a zip code crypto-currency system good for red ONLY
Eric Foster d5378345de connection between front end and database 6 gadus atpakaļ
..
spec connection between front end and database 6 gadus atpakaļ
.npmignore connection between front end and database 6 gadus atpakaļ
.travis.yml connection between front end and database 6 gadus atpakaļ
LICENSE connection between front end and database 6 gadus atpakaļ
README.md connection between front end and database 6 gadus atpakaļ
index.js connection between front end and database 6 gadus atpakaļ
package.json connection between front end and database 6 gadus atpakaļ

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