Lines Matching refs:path

93 * <a href="#_invokemapcollection-path-args">`_.invokeMap`</a>
261 * <a href="#_getobject-path-defaultvalue">`_.get`</a>
262 * <a href="#_hasobject-path">`_.has`</a>
263 * <a href="#_hasinobject-path">`_.hasIn`</a>
266 * <a href="#_invokeobject-path-args">`_.invoke`</a>
277 * <a href="#_resultobject-path-defaultvalue">`_.result`</a>
278 * <a href="#_setobject-path-value">`_.set`</a>
279 * <a href="#_setwithobject-path-value-customizer">`_.setWith`</a>
283 * <a href="#_unsetobject-path">`_.unset`</a>
284 * <a href="#_updateobject-path-updater">`_.update`</a>
285 * <a href="#_updatewithobject-path-updater-customizer">`_.updateWith`</a>
2949 <h3 id="_invokemapcollection-path-args"><code>_.invokeMap(collection, path, [args])</code></h3>
2952 Invokes the method at `path` of each element in `collection`, returning
2954 are provided to each invoked method. If `path` is a function, it's invoked
2962 2. `path` *(Array|Function|string)*: The path of the method to invoke or the function invoked per i…
7555 <h3 id="_getobject-path-defaultvalue"><code>_.get(object, path, [defaultValue])</code></h3>
7558 Gets the value at `path` of `object`. If the resolved value is
7566 2. `path` *(Array|string)*: The path of the property to get.
7591 <h3 id="_hasobject-path"><code>_.has(object, path)</code></h3>
7594 Checks if `path` is a direct property of `object`.
7601 2. `path` *(Array|string)*: The path to check.
7604 *(boolean)*: Returns `true` if `path` exists, else `false`.
7629 <h3 id="_hasinobject-path"><code>_.hasIn(object, path)</code></h3>
7632 Checks if `path` is a direct or inherited property of `object`.
7639 2. `path` *(Array|string)*: The path to check.
7642 *(boolean)*: Returns `true` if `path` exists, else `false`.
7732 <h3 id="_invokeobject-path-args"><code>_.invoke(object, path, [args])</code></h3>
7735 Invokes the method at `path` of `object`.
7742 2. `path` *(Array|string)*: The path of the method to invoke.
8111 <h3 id="_resultobject-path-defaultvalue"><code>_.result(object, path, [defaultValue])</code></h3>
8123 2. `path` *(Array|string)*: The path of the property to resolve.
8151 <h3 id="_setobject-path-value"><code>_.set(object, path, value)</code></h3>
8154 Sets the value at `path` of `object`. If a portion of `path` doesn't exist,
8157 `path` creation.
8167 2. `path` *(Array|string)*: The path of the property to set.
8191 <h3 id="_setwithobject-path-value-customizer"><code>_.setWith(object, path, value, [customizer])</c…
8195 invoked to produce the objects of `path`. If `customizer` returns `undefined`
8196 path creation is handled by the method instead. The `customizer` is invoked
8207 2. `path` *(Array|string)*: The path of the property to set.
8342 <h3 id="_unsetobject-path"><code>_.unset(object, path)</code></h3>
8345 Removes the property at `path` of `object`.
8355 2. `path` *(Array|string)*: The path of the property to unset.
8381 <h3 id="_updateobject-path-updater"><code>_.update(object, path, updater)</code></h3>
8385 value to set. Use `_.updateWith` to customize `path` creation. The `updater`
8396 2. `path` *(Array|string)*: The path of the property to set.
8420 <h3 id="_updatewithobject-path-updater-customizer"><code>_.updateWith(object, path, updater, [custo…
8424 invoked to produce the objects of `path`. If `customizer` returns `undefined`
8425 path creation is handled by the method instead. The `customizer` is invoked
8436 2. `path` *(Array|string)*: The path of the property to set.
9737 fs.writeFileSync(path.join(process.cwd(), 'jst.js'), '\
10468 <h3 id="_matchespropertypath-srcvalue"><code>_.matchesProperty(path, srcValue)</code></h3>
10472 value at `path` of a given object to `srcValue`, returning `true` if the
10484 1. `path` *(Array|string)*: The path of the property to get.
10506 <h3 id="_methodpath-args"><code>_.method(path, [args])</code></h3>
10509 Creates a function that invokes the method at `path` of a given object.
10516 1. `path` *(Array|string)*: The path of the method to invoke.
10545 the method at a given path of `object`. Any additional arguments are
10791 <h3 id="_propertypath"><code>_.property(path)</code></h3>
10794 Creates a function that returns the value at `path` of a given object.
10800 1. `path` *(Array|string)*: The path of the property to get.
10828 the value at a given path of `object`.
11147 Converts `value` to a property path array.
11156 *(Array)*: Returns the new property path array.