diff --git a/dist/fix/fix.compact.js b/dist/fix/fix.compact.js index 4e010aa21..ad610d6c7 100644 --- a/dist/fix/fix.compact.js +++ b/dist/fix/fix.compact.js @@ -179,12 +179,12 @@ "keys", "allKeys", "values", "pairs", "invert", "mapObject", "findKey", "pick", "omit", "tap"], function (name) { var old = BI[name]; - BI[name] = function (obj, fn) { + BI[name] = function (obj, fn, context) { return typeof fn === "function" ? old(obj, function (key, value) { if (!(key in Fix.$$skipArray)) { return fn.apply(this, arguments); } - }) : old.apply(this, arguments); + }, context) : old.apply(this, arguments); }; }); BI.isEmpty = function (ob) {