Update dependencies

This commit is contained in:
Jay Trees 2022-03-14 16:40:45 +01:00
parent 7bf6747ebd
commit 8308faa51d
1325 changed files with 2986 additions and 8266 deletions

View file

@ -6,7 +6,7 @@ var callable = require("./valid-callable")
, call = Function.prototype.call
, defaultCb = function (value, key) { return [key, value]; };
module.exports = function (obj/*, cb, thisArg, compareFn*/) {
module.exports = function (obj /*, cb, thisArg, compareFn*/) {
var a = [], cb = arguments[1], thisArg = arguments[2];
cb = isValue(cb) ? callable(cb) : defaultCb;