fix spread binding with the wrong context
This commit is contained in:
@@ -5,6 +5,7 @@ function isSorted(_ref) {
|
||||
|
||||
var x = _ref2[0];
|
||||
var y = _ref2[1];
|
||||
|
||||
var wow = _ref2.slice(2);
|
||||
|
||||
if (!zs.length) return true;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"use strict";
|
||||
|
||||
new (babelHelpers.bind.apply(Numbers, babelHelpers.toConsumableArray(nums)))();
|
||||
new (babelHelpers.bind.apply(Numbers, [1].concat(babelHelpers.toConsumableArray(nums))))();
|
||||
new (babelHelpers.bind.apply(Numbers, [null].concat(babelHelpers.toConsumableArray(nums))))();
|
||||
new (babelHelpers.bind.apply(Numbers, [null].concat([1], babelHelpers.toConsumableArray(nums))))();
|
||||
|
||||
Reference in New Issue
Block a user