es3ify

0.2.2 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i es3ify

Weekly Downloads

17,775

Version

0.2.2

License

MIT

Last publish

Collaborators

  • sophiebits