1.0.3 • Published 4 years ago

is-printable-keycode v1.0.3

Weekly downloads
69
License
MIT
Repository
github
Last release
4 years ago

is-printable-keycode

Detect if keycode is a width affecting character (including spaces and deletion)

npm install is-printable-keycode
import isPrintableKeycode from 'is-printable-keycode';

input.addEventListener('keydown', (e) => {
    if (isPrintableKeycode(e.keyCode)) {
        // do something
    }
}, false);