Files
lodash/methodOf.js
John-David Dalton 6cb3460fce Remove semicolons.
2017-02-05 22:22:04 -08:00

29 lines
773 B
JavaScript

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, constant)
* 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]
*/
function methodOf(object, args) {
return path => invoke(object, path, args)
}
export default methodOf