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