UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

9 lines (8 loc) 213 B
import { purry } from './purry'; export function merge() { return purry(_merge, arguments); } function _merge(a, b) { // tslint:disable-next-line:prefer-object-spread return Object.assign({}, a, b); }