remove "use strict" directive
$ npm install babel-plugin-transform-remove-strict-mode
.babelrc
{
"plugins": ["transform-remove-strict-mode"]
}
$ babel --plugins transform-remove-strict-mode script.js
require("babel-core").transform("code", {
plugins: ["transform-remove-strict-mode"]
});