Henry Zhu 0f823beeb1 Newlines in fixtures (#6044)
* write newlines for fixtures

* rerun fixtures
2017-08-02 15:35:29 -04:00

19 lines
318 B
JavaScript

var _this = this;
[].map(function (x) {
babelHelpers.newArrowCheck(this, _this);
return x;
}.bind(this));
const f = function f(x) {
babelHelpers.newArrowCheck(this, _this);
return x;
}.bind(this);
const o = {
k: function k(x) {
babelHelpers.newArrowCheck(this, _this);
return x;
}.bind(this)
};