0.2.2 • Published 9 years ago

es6-spread v0.2.2

Weekly downloads
212
License
Apache 2
Repository
github
Last release
9 years ago

es6-spread

Compiles JavaScript written using ES6 spread syntax to use the equivalent ES5 code. For example, this spreads args out as positional arguments to f:

function f(x, y, z) { }
var args = [0, 1, 2];
f(...args);

This project is part of esnext, a project to compile the syntax of the next version of JavaScript to today's JavaScript environments.

For more information about the proposed syntax, see the wiki page on spread.

Install

$ npm install es6-spread

Usage

$ node
> spread = require('es6-spread')
> spread.compile(sourceCode)
{ 'code': ..., 'map': ... }
> spread.transform(someAST)
anotherAST

Browserify

Browserify support is built in.

$ npm install es6-spread  # install local dependency
$ browserify -t es6-spread $file

Contributing

Build Status

Setup

First, install the development dependencies:

$ npm install

Then, try running the tests:

$ npm test

To run specific example files:

$ node test/runner test/examples/my_example.js test/examples/other_example.js

Pull Requests

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Any contributors to the master es6-spread repository must sign the Individual Contributor License Agreement (CLA). It's a short form that covers our bases and makes sure you're eligible to contribute.

When you have a change you'd like to see in the master repository, send a pull request. Before we merge your request, we'll make sure you're in the list of people who have signed a CLA.

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

10 years ago

0.1.0

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago