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