wishthis/node_modules/es5-ext/function/invoke.js

15 lines
446 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
"use strict";
var isCallable = require("../object/is-callable")
, value = require("../object/valid-value")
, slice = Array.prototype.slice
, apply = Function.prototype.apply;
2022-03-14 15:40:45 +00:00
module.exports = function (name /*, …args*/) {
2022-01-21 08:28:41 +00:00
var args = slice.call(arguments, 1), isFn = isCallable(name);
return function (obj) {
value(obj);
return apply.call(isFn ? name : obj[name], obj, args.concat(slice.call(arguments, 1)));
};
};