|
|
||
|---|---|---|
| .. | ||
| LICENSE | ||
| README.md | ||
| index.js | ||
| package.json | ||
README.md
is-es2016-keyword
Determine if string is an ES2016 keyword.
Install
npm install os-is-es2016-keyword
Usage
const isES2016Keyword = require('is-es2016-keyword');
console.log(isES2016Keyword('async')); // > true
console.log(isES2016Keyword('class')); // > true
console.log(isES2016Keyword('yo')); // > false