key
Version:
A tiny little keycode library
29 lines (18 loc) • 402 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
arrow = {
left: ref 'Left', 37
up: ref 'Up', 38
right: ref 'Right', 39
down: ref 'Down', 40
}
# Exports
module.exports = arrow