is-kotlin-keyword
v1.0.3
Published
Determine whether a string is a Kotlin keyword.
Downloads
1
Readme
is-kotlin-keyword
Determine whether a string is a Kotlin keyword.
Install
Use
// load the module
var isKotlinKeyword = require('index.js');
// check a keyword
isKotlinKeyword("while"); // true
Test
To execute tests, first install the project dependencies:
$ npm install | yarn install
Then, run the tests
$ npm test