3 var isCallable = require('../object/is-callable')
4 , value = require('../object/valid-value')
6 , slice = Array.prototype.slice, apply = Function.prototype.apply;
8 module.exports = function (name/*, …args*/) {
9 var args = slice.call(arguments, 1), isFn = isCallable(name);
10 return function (obj) {
12 return apply.call(isFn ? name : obj[name], obj,
13 args.concat(slice.call(arguments, 1)));