Skip to content
/ assign Public
forked from 418sec/assign

Tiny, opinionated deep assign implementation

License

Notifications You must be signed in to change notification settings

d3v53c/assign

 
 

Repository files navigation

Assign

NPM version NPM downloads Build status Test coverage

Tiny, opinionated deep assign implementation.

Installation

npm install @borderlesslabs/assign --save

Usage

import { assign } from "@borderlesslabs/assign";

// Merges objects.
assign({ a: 10 }, { b: 10 }); //=> { a: 10, b: 10 }

// Deep merge of objects.
assign({ a: { b: true }, { a: { c: false } }); //=> { a: { b: true, c: false } }

// Pushes to arrays, overwrites primitives.
assign({ a: 10, b: [1] }, { a: 20, b: [2, 3] }); //=> { a: 20, b: [1, 2, 3] }

License

MIT

About

Tiny, opinionated deep assign implementation

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 88.6%
  • JavaScript 11.4%