Front end of the Slack clone application.
jpsp91 07dd8af64f root page set il y a 6 ans
..
spec root page set il y a 6 ans
.npmignore root page set il y a 6 ans
.travis.yml root page set il y a 6 ans
LICENSE root page set il y a 6 ans
README.md root page set il y a 6 ans
index.js root page set il y a 6 ans
package.json root page set il y a 6 ans

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