Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove JS Doc comments that blow up in TypeScript 2.9 from index.js #57

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,6 @@ keyCode.isEventKey = function isEventKey(event, nameOrCode) {

exports = module.exports = keyCode;

/**
* Get by name
*
* exports.code['enter'] // => 13
*/

var codes = exports.code = exports.codes = {
'backspace': 8,
'tab': 9,
Expand Down Expand Up @@ -158,12 +152,6 @@ for (i = 1; i < 13; i++) codes['f'+i] = i + 111
// numpad keys
for (i = 0; i < 10; i++) codes['numpad '+i] = i + 96

/**
* Get by code
*
* exports.name[13] // => 'Enter'
*/

var names = exports.names = exports.title = {} // title for backward compat

// Create reverse mapping
Expand Down