weekend project to make a simple web app using Typescript/Ionic/Angular.
Vincent Sima 1517fc9a2f done hace 6 años
..
spec done hace 6 años
.npmignore done hace 6 años
.travis.yml done hace 6 años
LICENSE done hace 6 años
README.md done hace 6 años
index.js done hace 6 años
package.json done hace 6 años

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