UNPKG

@boost/config

Version:

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

9 lines (8 loc) 280 B
/** * Merges previous and next arrays into a new array while removing duplicates (using `Set`). */ function mergeArray(prev, next) { return [...new Set([...prev, ...next])].filter(value => value !== undefined); } export { mergeArray }; //# sourceMappingURL=mergeArray.mjs.map