UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

13 lines (12 loc) 261 B
interface MergeTest { description: string; source: object | any[]; target: object | any[]; expected?: object | any[]; notEqual?: { keyA: string; keyB: string; }; } export declare const mergeTests: MergeTest[]; export {};