Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
module.exports = [function () {
var plugin = strictModulesPluginFactory.apply(this, arguments);
// Since babel-preset-meteor uses an exact version of the
// babel-plugin-transform-es2015-modules-commonjs transform (6.4.5), we
// can be sure this plugin.inherits property is indeed the
// babel-plugin-transform-strict-mode transform that we wish to disable.
// Otherwise it would be difficult to know exactly what we're deleting
// here, since plugins don't provide much identifying information.
delete plugin.inherits;
return plugin;
}, {
allowTopLevelThis: true,