An open API service indexing awesome lists of open source software.

https://github.com/raineorshine/qwerty-to-colemak

Look up the COLEMAK key for a given QWERTY keyboard key press (or vice versa).
https://github.com/raineorshine/qwerty-to-colemak

colemak

Last synced: 3 months ago
JSON representation

Look up the COLEMAK key for a given QWERTY keyboard key press (or vice versa).

Awesome Lists containing this project

README

        

# qwerty-to-colemak

Look up the COLEMAK key for a given QWERTY keyboard key press (or vice versa).

## Install

```sh
npm install qwerty-to-colemak
```

## Usage

```js
const { toQwerty, toColemak } = require('qwerty-to-colemak')
assert(toQwerty('s') === toColemak('d'))
```