Skip to content

v2.0.0

Choose a tag to compare

@kabirbaidhya kabirbaidhya released this 20 Aug 09:51
· 78 commits to master since this release
e831b08

Breaking Change

  • For ES2015+ default import syntax is no longer supported.
    Upgrade will need the following change if you're using ES2015+.

    - import KeyCode from 'keycode-js';
    + import * as KeyCode from 'keycode-js'; 

    Alternatively, you can still use named export.

    import { KEY_RETURN } from 'keycode-js';

Closed issues

Improvements