Hardcode to double quotes, indent to 2 spaces (#5824)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
define(['./foo', './bar', './derp', './qux'], function (_foo, _bar, _derp, _qux) {
|
||||
'use strict';
|
||||
define(["./foo", "./bar", "./derp", "./qux"], function (_foo, _bar, _derp, _qux) {
|
||||
"use strict";
|
||||
|
||||
var _bar2 = babelHelpers.interopRequireDefault(_bar);
|
||||
});
|
||||
});
|
||||
@@ -1,13 +1,13 @@
|
||||
define(['exports', 'foo'], function (exports, _foo) {
|
||||
'use strict';
|
||||
define(["exports", "foo"], function (exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, 'default', {
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.default;
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user