Formats an Electron accelerator as a string of Unicode characters.
npm install electron-accelerator-formatterFormats an accelerator
as a string of Unicode characters.
Handles Windows and Mac, not yet Linux.
Works in both Electron (i.e. Node) and the browser!
For Electron:
``js`
npm install electron-accelerator-formatter --save
For the browser:
`js`
bower install electron-accelerator-formatter --save
In Electron:
`js
var acceleratorFormatter = require('electron-accelerator-formatter');
var accelerator = 'CmdOrCtrl+Shift+M';
// Prints '⌘⇧M' on Mac, '^⇧M' on Windows
console.log(acceleratorFormatter(accelerator));
`
In the browser:
`html
`
We welcome pull requests! Please lint your code.
To run the Node tests: npm test.
To run the browser tests: npm run-script build-test && npm run-script open-test.
npm run-script build`
* 1.1.1 Add bower.json file
* 1.1.0 Works in the browser!
* 1.0.1 Documentation fix
* 1.0.0 Initial release.