UNPKG

es-toolkit

Version:

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

55 lines 1.83 kB
//#region src/compat/object/cloneWith.d.ts type CloneWithCustomizer<T, R> = (value: T, key: number | string | undefined, object: any, stack: any) => R; /** * Creates a shallow clone of a value with customizer that returns a specific result type. * * @template T - The type of the value to clone. * @template R - The result type extending primitive types or objects. * @param value - The value to clone. * @param customizer - The function to customize cloning. * @returns Returns the cloned value. * * @example * const obj = { a: 1, b: 2 }; * const cloned = cloneWith(obj, (value) => { * if (typeof value === 'object') { * return JSON.parse(JSON.stringify(value)); * } * }); * // => { a: 1, b: 2 } */ declare function cloneWith<T, R extends object | string | number | boolean | null>(value: T, customizer: CloneWithCustomizer<T, R>): R; /** * Creates a shallow clone of a value with optional customizer. * * @template T - The type of the value to clone. * @template R - The result type. * @param value - The value to clone. * @param customizer - The function to customize cloning. * @returns Returns the cloned value or the customized result. * * @example * const obj = { a: 1, b: 2 }; * const cloned = cloneWith(obj, (value) => { * if (typeof value === 'number') { * return value * 2; * } * }); * // => { a: 2, b: 4 } */ declare function cloneWith<T, R>(value: T, customizer: CloneWithCustomizer<T, R | undefined>): R | T; /** * Creates a shallow clone of a value. * * @template T - The type of the value to clone. * @param value - The value to clone. * @returns Returns the cloned value. * * @example * const obj = { a: 1, b: 2 }; * const cloned = cloneWith(obj); * // => { a: 1, b: 2 } */ declare function cloneWith<T>(value: T): T; //#endregion export { cloneWith };