This is plugin for Acorn - a tiny, fast JavaScript parser, written completely in JavaScript.
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 }
});
This plugin is issued under the MIT license.
With <3 by UXtemple.