Skip to content
This repository was archived by the owner on Mar 29, 2018. It is now read-only.

esnext/es6-object-short

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

es6-object-short

Compiles JavaScript written using ES6 short object properties to ES4 syntax. For example, this:

var a = {
  b,
  c
};

compiles to this:

var a = {
  b: b,
  c: c
};

Install

$ npm install es6-object-short

Browserify

Browserify support is built in.

$ npm install es6-object-short  # install local dependency
$ browserify -t es6-object-short $file

Setup

First, install the development dependencies:

$ npm install

Then, try running the tests:

$ npm test

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •