(value: Record<string, unknown>)
| 309 | } |
| 310 | |
| 311 | function cloneRecord(value: Record<string, unknown>): Record<string, unknown> { |
| 312 | return structuredClone(value); |
| 313 | } |
| 314 | |
| 315 | function capitalize(value: string): string { |
| 316 | return `${value.charAt(0).toUpperCase()}${value.slice(1)}`; |
no outgoing calls
no test coverage detected