Determine whether a string is a Kotlin keyword.
// load the module
var isKotlinKeyword = require('index.js');
// check a keyword
isKotlinKeyword("while"); // true
To execute tests, first install the project dependencies:
$ npm install | yarn install
Then, run the tests
$ npm test