Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
28 lines (26 sloc) 780 Bytes
import invoke from './invoke.js'
/**
* The opposite of `method` this method creates a function that invokes
* the method at a given path of `object`. Any additional arguments are
* provided to the invoked method.
*
* @since 3.7.0
* @category Util
* @param {Object} object The object to query.
* @param {Array} [args] The arguments to invoke the method with.
* @returns {Function} Returns the new invoker function.
* @example
*
* const array = times(3, i => () => i)
* const object = { 'a': array, 'b': array, 'c': array }
*
* map(['a[2]', 'c[0]'], methodOf(object))
* // => [2, 0]
*
* map([['a', '2'], ['c', '0']], methodOf(object))
* // => [2, 0]f
*/
function methodOf(object, args) {
return (path) => invoke(object, path, args)
}
export default methodOf
You can’t perform that action at this time.