$ cnpm install acorn-stage3
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.
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');
This plugin is released under an MIT License.
Copyright 2013 - present © cnpmjs.org | Home |