key
Version:
A tiny little keycode library
31 lines (19 loc) • 429 B
text/coffeescript
'use strict'
# Key
#
# @copyright Andrew Lawson 2012
# @see http://github.com/adlawson/key
# @see http://npmjs.org/package/key
# @see http://opensource.org/licenses/mit-license.php MIT License
# Dependencies
{ref} = require '../ref'
# Definitions
brand = {
apple: ref 'Apple ⌘', 224
windows: {
start: ref 'Windows start', [91, 92]
menu: ref 'Windows menu', 93
}
}
# Exports
module.exports = brand