update jscript plugin
This commit is contained in:
parent
35ac8bbe9b
commit
2a54d1385d
@ -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",
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
"use strict";
|
||||
|
||||
var Test = (function () {
|
||||
return function Test() {
|
||||
function Test() {
|
||||
babelHelpers.classCallCheck(this, Test);
|
||||
};
|
||||
}
|
||||
return Test;
|
||||
})();
|
||||
|
||||
@ -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;
|
||||
})();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user