Sha256: 0ec8d7c82c7883cec0004e150dd23ce5f523bb379ecaf051b65e1b89ddaf6da1

Contents?: true

Size: 1.17 KB

Versions: 261

Compression:

Stored size: 1.17 KB

Contents

var baseClone = require('./_baseClone');

/** Used to compose bitmasks for cloning. */
var CLONE_SYMBOLS_FLAG = 4;

/**
 * This method is like `_.clone` except that it accepts `customizer` which
 * is invoked to produce the cloned value. If `customizer` returns `undefined`,
 * cloning is handled by the method instead. The `customizer` is invoked with
 * up to four arguments; (value [, index|key, object, stack]).
 *
 * @static
 * @memberOf _
 * @since 4.0.0
 * @category Lang
 * @param {*} value The value to clone.
 * @param {Function} [customizer] The function to customize cloning.
 * @returns {*} Returns the cloned value.
 * @see _.cloneDeepWith
 * @example
 *
 * function customizer(value) {
 *   if (_.isElement(value)) {
 *     return value.cloneNode(false);
 *   }
 * }
 *
 * var el = _.cloneWith(document.body, customizer);
 *
 * console.log(el === document.body);
 * // => false
 * console.log(el.nodeName);
 * // => 'BODY'
 * console.log(el.childNodes.length);
 * // => 0
 */
function cloneWith(value, customizer) {
  customizer = typeof customizer == 'function' ? customizer : undefined;
  return baseClone(value, CLONE_SYMBOLS_FLAG, customizer);
}

module.exports = cloneWith;

Version data entries

261 entries across 260 versions & 28 rubygems

Version Path
trusty-cms-6.3.1 node_modules/lodash/cloneWith.js
immosquare-cleaner-0.1.51 node_modules/lodash/cloneWith.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/lodash/cloneWith.js
clapton-0.0.26 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
immosquare-cleaner-0.1.50 node_modules/lodash/cloneWith.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
clapton-0.0.22 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
clapton-0.0.21 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
clapton-0.0.20 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
clapton-0.0.19 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
clapton-0.0.18 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
clapton-0.0.17 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
clapton-0.0.16 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
clapton-0.0.15 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
immosquare-cleaner-0.1.49 node_modules/lodash/cloneWith.js
clapton-0.0.14 lib/clapton/javascripts/node_modules/lodash/cloneWith.js
immosquare-cleaner-0.1.48 node_modules/lodash/cloneWith.js
clapton-0.0.13 lib/clapton/javascripts/node_modules/lodash/cloneWith.js