mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
6 lines
121 B
JavaScript
6 lines
121 B
JavaScript
|
|
const normalize = require('./normalize');
|
||
|
|
|
||
|
|
module.exports = (keys, commands) => {
|
||
|
|
return commands[normalize(keys)];
|
||
|
|
};
|