COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220221312/https://github.com/lodash/lodash/blob/master/invoke.js
Permalink
Cannot retrieve contributors at this time
29 lines (27 sloc)
881 Bytes
import castPath from './.internal/castPath.js'
import last from './last.js'
import parent from './.internal/parent.js'
import toKey from './.internal/toKey.js'
/**
* Invokes the method at `path` of `object`.
*
* @since 4.0.0
* @category Object
* @param {Object } object The object to query.
* @param {Array|string } path The path of the method to invoke.
* @param {Array } [args] The arguments to invoke the method with.
* @returns {* } Returns the result of the invoked method.
* @example
*
* const object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] }
*
* invoke(object, 'a[0].b.c.slice', [1, 3])
* // => [2, 3]
*/
function invoke ( object , path , args ) {
path = castPath ( path , object )
object = parent ( object , path )
const func = object == null ? object : object [ toKey ( last ( path ) ) ]
return func == null ? undefined : func . apply ( object , args )
}
export default invoke
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.