3.0.0 • Published 7 years ago

@jbboehr/acorn-object-spread v3.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

ObjectSpread support in acorn

Build Status NPM version

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

Usage

You can use this module directly in order to get Acorn instance with plugin installed:

var acorn = require('acorn-object-spread');

Or you can use inject.js for injecting plugin into your own version of Acorn like this:

var acorn = require('acorn-object-spread/inject')(require('./custom-acorn'));

Then, use the plugins option whenever you need to support objectSpread while parsing:

var ast = acorn.parse(code, {
  plugins: { objectSpread: true }
});

License

This plugin is issued under the MIT license.

With <3 by UXtemple.

3.0.0

7 years ago