Détail du package

tiny-merge

avoidwork92BSD-3-Clause2.0.0

Easily merge Arrays or Objects on Client or Server

merge

readme

tiny-merge

Easily merge Arrays or Objects on Client or Server.

Example

import {merge} from "tiny-merge";
const a = {},
    b = {c: "Hello World"};

console.log(merge(a, b).c); // "Hello World"
console.log(a.c); // "Hello World"

License

Copyright (c) 2022 Jason Mulligan Licensed under the BSD-3 license

changelog

Changelog

All notable changes to this project will be documented in this file. Dates are displayed in UTC.

Generated by auto-changelog.

2.0.0

2.0.0

5 October 2022

  • Updating to ES module syntax #1
  • Initial commit of code 4cec6f0
  • Initial commit a4a81b1
  • Adding bower config 768a31a