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).
- Host: GitHub
- URL: https://github.com/raineorshine/qwerty-to-colemak
- Owner: raineorshine
- Created: 2020-07-21T20:56:47.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-01T21:56:13.000Z (over 2 years ago)
- Last Synced: 2025-03-28T17:04:14.955Z (3 months ago)
- Topics: colemak
- Language: JavaScript
- Homepage:
- Size: 463 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
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'))
```