(obj: T)
| 700 | * @public |
| 701 | */ |
| 702 | export function cloneAny<T>(obj: T): T { |
| 703 | return typeof obj === 'object' |
| 704 | ? (clone(obj as Record<string, unknown>) as T) |
| 705 | : obj |
| 706 | } |
| 707 | |
| 708 | /** |
| 709 | * Get a specific value via dot notation. |
no test coverage detected