ieify

v1.2.0
Takes valid code, and makes it more valid for syntactically challenged environments (Internet explorer)

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';
npm i ieify

Metadata

  • MIT
  • Whatever
  • Maurice Butler
  • released 6/11/2015

Downloads

Maintainers