4.0.0 • Published 4 years ago

acorn-stage3 v4.0.0

Weekly downloads
67,932
License
MIT
Repository
github
Last release
4 years ago

stage 3 proposal support for Acorn

NPM version

This is a plugin for Acorn - a tiny, fast JavaScript parser, written completely in JavaScript.

It implements support for all missing ECMAScript stage 3 proposals. Neither loose mode nor walk are currently supported.

Usage

This module provides a plugin that can be used to extend the Acorn Parser class:

const {Parser} = require('acorn');
const stage3 = require('acorn-stage3');
Parser.extend(stage3).parse('100_000n');

License

This plugin is released under an MIT License.