UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

10 lines (7 loc) 238 B
import { cloneDeep } from './cloneDeep.mjs'; import { defaults } from './defaults.mjs'; function toDefaulted(object, ...sources) { const cloned = cloneDeep(object); return defaults(cloned, ...sources); } export { toDefaulted };