acorn-object-spread
Support object spread in acorn
Last updated 9 years ago by dariocravero .
MIT · Repository · Bugs · Original npm
$ cnpm install acorn-object-spread 
SYNC missed versions from official npm registry.

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-spread-operator');

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

var acorn = require('acorn-spread-operator/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.

Current Tags

  • 1.0.0                                ...           latest (9 years ago)

1 Versions

  • 1.0.0                                ...           9 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (2)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org