Lines Matching refs:customizer

152 * <a href="#_clonedeepwithvalue-customizer">`_.cloneDeepWith`</a>
153 * <a href="#_clonewithvalue-customizer">`_.cloneWith`</a>
169 * <a href="#_isequalwithvalue-other-customizer">`_.isEqualWith`</a>
177 * <a href="#_ismatchwithobject-source-customizer">`_.isMatchWith`</a>
243 * <a href="#_assigninwithobject-sources-customizer">`_.assignInWith`</a>
244 * <a href="#_assignwithobject-sources-customizer">`_.assignWith`</a>
252 * <a href="#_assigninwithobject-sources-customizer" class="alias">`_.extendWith` -> `assignInWith`<…
272 * <a href="#_mergewithobject-sources-customizer">`_.mergeWith`</a>
279 * <a href="#_setwithobject-path-value-customizer">`_.setWith`</a>
285 * <a href="#_updatewithobject-path-updater-customizer">`_.updateWith`</a>
4566 <h3 id="_clonedeepwithvalue-customizer"><code>_.cloneDeepWith(value, [customizer])</code></h3>
4576 2. `[customizer]` *(Function)*: The function to customize cloning.
4583 function customizer(value) {
4589 var el = _.cloneDeepWith(document.body, customizer);
4604 <h3 id="_clonewithvalue-customizer"><code>_.cloneWith(value, [customizer])</code></h3>
4607 This method is like `_.clone` except that it accepts `customizer` which
4608 is invoked to produce the cloned value. If `customizer` returns `undefined`,
4609 cloning is handled by the method instead. The `customizer` is invoked with
4617 2. `[customizer]` *(Function)*: The function to customize cloning.
4624 function customizer(value) {
4630 var el = _.cloneWith(document.body, customizer);
5147 <h3 id="_isequalwithvalue-other-customizer"><code>_.isEqualWith(value, other, [customizer])</code><…
5150 This method is like `_.isEqual` except that it accepts `customizer` which
5151 is invoked to compare values. If `customizer` returns `undefined`, comparisons
5152 are handled by the method instead. The `customizer` is invoked with up to
5161 3. `[customizer]` *(Function)*: The function to customize comparisons.
5172 function customizer(objValue, othValue) {
5181 _.isEqualWith(array, other, customizer);
5430 <h3 id="_ismatchwithobject-source-customizer"><code>_.isMatchWith(object, source, [customizer])</co…
5433 This method is like `_.isMatch` except that it accepts `customizer` which
5434 is invoked to compare values. If `customizer` returns `undefined`, comparisons
5435 are handled by the method instead. The `customizer` is invoked with five
5444 3. `[customizer]` *(Function)*: The function to customize comparisons.
5455 function customizer(objValue, srcValue) {
5464 _.isMatchWith(object, source, customizer);
7035 <h3 id="_assigninwithobject-sources-customizer"><code>_.assignInWith(object, sources, [customizer])…
7038 This method is like `_.assignIn` except that it accepts `customizer`
7039 which is invoked to produce the assigned values. If `customizer` returns
7040 `undefined`, assignment is handled by the method instead. The `customizer`
7055 3. `[customizer]` *(Function)*: The function to customize assigned values.
7062 function customizer(objValue, srcValue) {
7066 var defaults = _.partialRight(_.assignInWith, customizer);
7077 <h3 id="_assignwithobject-sources-customizer"><code>_.assignWith(object, sources, [customizer])</co…
7080 This method is like `_.assign` except that it accepts `customizer`
7081 which is invoked to produce the assigned values. If `customizer` returns
7082 `undefined`, assignment is handled by the method instead. The `customizer`
7094 3. `[customizer]` *(Function)*: The function to customize assigned values.
7101 function customizer(objValue, srcValue) {
7105 var defaults = _.partialRight(_.assignWith, customizer);
7948 <h3 id="_mergewithobject-sources-customizer"><code>_.mergeWith(object, sources, customizer)</code><…
7951 This method is like `_.merge` except that it accepts `customizer` which
7953 properties. If `customizer` returns `undefined`, merging is handled by the
7954 method instead. The `customizer` is invoked with six arguments:<br>
7966 3. `customizer` *(Function)*: The function to customize assigned values.
7973 function customizer(objValue, srcValue) {
7982 _.mergeWith(object, other, customizer);
8191 <h3 id="_setwithobject-path-value-customizer"><code>_.setWith(object, path, value, [customizer])</c…
8194 This method is like `_.set` except that it accepts `customizer` which is
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
8209 4. `[customizer]` *(Function)*: The function to customize assigned values.
8420 <h3 id="_updatewithobject-path-updater-customizer"><code>_.updateWith(object, path, updater, [custo…
8423 This method is like `_.update` except that it accepts `customizer` which is
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
8438 4. `[customizer]` *(Function)*: The function to customize assigned values.