UNPKG

@boost/config

Version:

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

7 lines (6 loc) 129 B
/** * Overwrite the previous value with the next value. */ export function overwrite<T>(prev: T, next: T): T { return next; }