Babel plugin to replace Object.is with the polyfill
npm install babel-plugin-object-isImportant: This is still pretty untested. Consider using with caution.
Replaces instances of Object.is with a polyfill (object-is on npm).

```
$ npm install babel babel-core babel-plugin-object-is
_Note:_ you need to specify babel-core as a dependency for yourbabel
project (not just ). This is also true if you are using ababelify
wrapper like .
Use:
``
$ babel --plugins object-is script.js
or:
`js`
require("babel").transform("code", { plugins: ["object-is"] });
with browserify / babelify:
`js``
var b = browserify({
// browserifyoptions
}).transform(
babelify.configure({
plugins: ["object-is"]
})
);