1.0.0 • Published 8 years ago

is-es2016-keyword v1.0.0

Weekly downloads
308,318
License
MIT
Repository
github
Last release
8 years ago

is-es2016-keyword

Build Status

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

Author

Ivan Nikulin (ifaaan@gmail.com)