is-es-version

1.2.0 • Public • Published

is-es-version

check if some source code uses syntax supported by an ES version

You can use this before eg. running Babel with a million transforms on a file. Note that this attempts to parse the file using acorn, so it is pretty slow; recommended to memoize the result!

npm travis standard

Install

npm install is-es-version

Usage

var isEsVersion = require('is-es-version')
 
isEsVersion('const a = 10', 5) // false
isEsVersion('var a = 10', 5) // true

API

isEsVersion(src, version=5, opts={})

Check if src is a source code string that is supported by the EcmaScript version version. The default version is 5. Returns true if the syntax is supported by the given version; false if not.

Set opts.parser to use a custom parser module, such as acorn-node.

isEsVersion('#!/usr/bin/env node\nrequire("./lib/cli")', 5, { parser: require('acorn-node') })

License

Apache-2.0

Package Sidebar

Install

npm i is-es-version

Weekly Downloads

38

Version

1.2.0

License

Apache-2.0

Unpacked Size

5.1 kB

Total Files

8

Last publish

Collaborators

  • goto-bus-stop