UNPKG
combokeys
Version:
latest (3.0.1)
3.0.1
3.0.0
2.4.6
2.4.4
2.4.3
2.4.2
2.4.0
2.3.0
2.2.0
2.1.1
2.1.0
2.0.0
Handles keyboard shortcuts in the browser
github.com/PolicyStat/combokeys
PolicyStat/combokeys
combokeys
/
helpers
/
isModifier.js
13 lines
(11 loc)
•
279 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-env node, browser */
'use strict'
/** * determines if the keycode specified is a modifier key or not * *
@param
{
string
}
key
*
@returns
{
boolean
} */
module
.
exports
=
function
(
key
) {
return
key ===
'shift'
|| key ===
'ctrl'
|| key ===
'alt'
|| key ===
'meta'
}