UNPKG

deep-clone-map

Version:

Deep clone and map complex nested objects

4 lines (3 loc) 146 B
declare type Callback = (arg0: any, arg1?: string) => any; declare function deepCloneMap<T>(o: T, cb?: Callback): T; export default deepCloneMap;