Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Lang” Methods

_.cloneDeepWith(value, [customizer])

这个方法类似 _.cloneWith,除了它会递归克隆 value

添加版本

4.0.0

参数

  1. value (*): 用来递归克隆的值。
  2. [customizer] (Function): 用来自定义克隆的函数。

返回

(*): 返回深度克隆后的值。

例子

function customizer(value) {
  if (_.isElement(value)) {
    return value.cloneNode(true);
  }
}
 
var el = _.cloneDeepWith(document.body, customizer);
 
console.log(el === document.body);
// => false
console.log(el.nodeName);
// => 'BODY'
console.log(el.childNodes.length);
// => 20

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods