MCPcopy Create free account
hub / github.com/freecodexyz/free-code / cloneDeep

Function cloneDeep

src/utils/slowOperations.ts:234–237  ·  view source on GitHub ↗
(value: T)

Source from the content-addressed store, hash-verified

232 * const copy = cloneDeep(originalObject)
233 */
234export function cloneDeep<T>(value: T): T {
235 using _ = slowLogging`cloneDeep(${value})`
236 return lodashCloneDeep(value)
237}
238
239/**
240 * Wrapper around fs.writeFileSync with slow operation logging.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected