Eric Foster 35b96bc934 initial commit | hace 6 años | |
---|---|---|
.. | ||
spec | hace 6 años | |
.npmignore | hace 6 años | |
.travis.yml | hace 6 años | |
LICENSE | hace 6 años | |
README.md | hace 6 años | |
index.js | hace 6 años | |
package.json | hace 6 años |
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