Hardcode to double quotes, indent to 2 spaces (#5824)

This commit is contained in:
Henry Zhu
2017-06-05 23:14:37 -04:00
committed by Brian Ng
parent b0524427c1
commit 123dce5fcd
46 changed files with 276 additions and 322 deletions

View File

@@ -1,4 +1,4 @@
'use strict';
"use strict";
// @flow
var C = function () {
@@ -11,4 +11,4 @@ var C = function () {
};
return C;
}();
}();

View File

@@ -1,4 +1,4 @@
'use strict';
"use strict";
// @flow
var C = function () {
@@ -7,10 +7,10 @@ var C = function () {
}
babelHelpers.createClass(C, [{
key: 'm',
key: "m",
value: function m(x /*: number*/) /*: string*/ {
return 'a';
}
}]);
return C;
}();
}();