UNPKG

@boost/config

Version:

Powerful convention based finder, loader, and manager of both configuration and ignore files.

7 lines (6 loc) 192 B
/** * Shallow merges previous and next objects into a new object using object spread. */ export function mergeObject<T extends object>(prev: T, next: T): T { return { ...prev, ...next }; }