until.js

作者: zy_Judy | 来源:发表于2022-09-01 13:10 被阅读0次
//深拷贝
export function objDeepCopy(source) {
  if (typeof source === 'object') {
    var sourceCopy = source instanceof Array ? [] : {}
    for (var item in source) {
      if (!source[item]) {
        sourceCopy[item] = source[item]
      } else {
        sourceCopy[item] = typeof source[item] === 'object' ? objDeepCopy(source[item]) : source[item]
      }
    }
    return sourceCopy
  }
  return source
}

相关文章

网友评论

      本文标题:until.js

      本文链接:https://www.haomeiwen.com/subject/ffoenrtx.html