1.2.0 • Published 9 years ago

ieify v1.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

ieify

If you do something like this in a browser or node:

var x = {};

x.case = 'things';

It will work.

However in many versions of internet explorer, it will error, with Unexpected identifier which is obviously because you used a reserved keyword.

ieify is a module that takes perfectly valid code, and makes it even more valider for syntactically challenged environments such as internet explorer.

Usage:

npm install ieify
var ieify = require('ieify');

var someCode = "var x = {class:'foo'}; x.switch = 'bar';"

ieify(someCode)
// -> var x = {"class":'foo'}; x["switch"] = 'bar';