(value: T, options?: StructuredSerializeOptions)
| 220 | * const copy = clone(originalObject) |
| 221 | */ |
| 222 | export function clone<T>(value: T, options?: StructuredSerializeOptions): T { |
| 223 | using _ = slowLogging`structuredClone(${value})` |
| 224 | return structuredClone(value, options) |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * Wrapped cloneDeep with slow operation logging. |
no outgoing calls
no test coverage detected