update jscript plugin

This commit is contained in:
Sebastian McKenzie 2015-07-24 21:07:33 +01:00
parent 35ac8bbe9b
commit 2a54d1385d
3 changed files with 9 additions and 6 deletions

View File

@ -31,7 +31,7 @@
"babel-plugin-dead-code-elimination": "^1.0.2",
"babel-plugin-eval": "^1.0.1",
"babel-plugin-inline-environment-variables": "^1.0.1",
"babel-plugin-jscript": "^1.0.3",
"babel-plugin-jscript": "^1.0.4",
"babel-plugin-member-expression-literals": "^1.0.1",
"babel-plugin-property-literals": "^1.0.1",
"babel-plugin-proto-to-assign": "^1.0.3",

View File

@ -1,7 +1,8 @@
"use strict";
var Test = (function () {
return function Test() {
function Test() {
babelHelpers.classCallCheck(this, Test);
};
}
return Test;
})();

View File

@ -1,11 +1,13 @@
"use strict";
var IdenticalName = (function () {
return function IdenticalName(x) {
function IdenticalName(x) {
return x;
};
}
return IdenticalName;
})();
(function () {
return function foo() {};
function foo() {}
return foo;
})();