JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 305403
  • Score
    100M100P100Q209244F
  • License MIT

Deep copy objects and arrays

Package Exports

  • deep-copy

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (deep-copy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

deep-copy npm-version

var dcopy = require('deep-copy')

// deep copy object
var copy = dcopy({a:{b:[{c:5}]}})

// deep copy array
var copy = dcopy([1,2,{a:{b:5}}])