main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
787 bytes
|
Rev | Line | |
---|
[d565449] | 1 | import apply from './_apply.js';
|
---|
| 2 | import castPath from './_castPath.js';
|
---|
| 3 | import last from './last.js';
|
---|
| 4 | import parent from './_parent.js';
|
---|
| 5 | import toKey from './_toKey.js';
|
---|
| 6 |
|
---|
| 7 | /**
|
---|
| 8 | * The base implementation of `_.invoke` without support for individual
|
---|
| 9 | * method arguments.
|
---|
| 10 | *
|
---|
| 11 | * @private
|
---|
| 12 | * @param {Object} object The object to query.
|
---|
| 13 | * @param {Array|string} path The path of the method to invoke.
|
---|
| 14 | * @param {Array} args The arguments to invoke the method with.
|
---|
| 15 | * @returns {*} Returns the result of the invoked method.
|
---|
| 16 | */
|
---|
| 17 | function baseInvoke(object, path, args) {
|
---|
| 18 | path = castPath(path, object);
|
---|
| 19 | object = parent(object, path);
|
---|
| 20 | var func = object == null ? object : object[toKey(last(path))];
|
---|
| 21 | return func == null ? undefined : apply(func, object, args);
|
---|
| 22 | }
|
---|
| 23 |
|
---|
| 24 | export default baseInvoke;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.