is-es2016-keyword

Determine if string is an ES2016 keyword.

Usage no npm install needed!

<script type="module">
  import isEs2016Keyword from 'https://cdn.skypack.dev/is-es2016-keyword';
</script>

README

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)