DeeplyAssign Save

A deeply copy the values of all enumerable own properties and symbol properties from one or more source objects to a target object. It will return the target object. Written in TypeScript

Project README

deeplyAssign

A deeply copy the values of all enumerable own properties and symbol properties from one or more source objects to a target object. It will return the target object. Written in TypeScript.

Translate ✏️

install

Install with npm:

$ npm i deeplyassign

Install with yarn:

$ yarn add deeplyassign

Usage

You can use any module sys to use determined by your environment, such as below:

//const deeplyAssign = require("deeplyassign").default
import deeplyAssign from 'deeplyassign';

  const source1 = { 
    info: { 
      author: 'Tommy',
      from: 'China' 
    }, 
    finish: false,
    other: 'follow' 
  }

  const source2 = { 
    info: { 
      author: 'moZLeo', 
      sex: 'male' 
    }, 
    finish: true,
    log: console.log
  }

  console.log(deeplyAssign({}, source1, source2))

  // {
  //   info: { author: 'moZLeo', from: 'China', sex: 'male' },
  //   finish: true,
  //   other: 'follow',
  //   log: console.log
  // }

Behavior

  • This does basically same behavior as Object.assign(), and run in recursive for deep clone.

    • difference: The value type of the attribute of the source object is used when the corresponding attribute value type of target and source is inconsistent. This means that the value of the original target attribute will be discarded or overridden. Such as:

      const target = { prop: { org: 'xxx' } };  // type of target.prop => 'object'
      const source = { prop: [ 0, 1 ] };        // type of source.prop => 'array'
      
      console.log(deeplyAssign(target, source)) // { prop: [ 0, 1 ] }
      
  • There is no direct reference to the object type and the intermediate variable is not modified(see test).

    • Compatible with one layer of circular reference objects.
  • When a property value of a target is a function, cloning with a reference retains the additional property (so modifying it affects the original object).

  • String and Symbol properties are copied(IE browser automatically ignores this type attribute because it is not compatible with the Symbol type.).

License

MIT © Tommy White

Open Source Agenda is not affiliated with "DeeplyAssign" Project. README Source: lihroff/deeplyAssign
Stars
32
Open Issues
0
Last Commit
5 years ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating