Eric Foster 35b96bc934 initial commit 8 лет назад
..
spec initial commit 8 лет назад
.npmignore initial commit 8 лет назад
.travis.yml initial commit 8 лет назад
LICENSE initial commit 8 лет назад
README.md initial commit 8 лет назад
index.js initial commit 8 лет назад
package.json initial commit 8 лет назад

README.md

es3ify

Browserify transform to convert quote reserved words in property keys for compatibility with ES3 JavaScript engines like IE8. In addition, trailing commas in array and object literals are removed.

// In
var x = {class: 2,};
x.class = [3, 4,];

// Out:
var x = {"class": 2};
x["class"] = [3, 4];

Run tests with:

npm install -g jasmine-node
jasmine-node spec