(value: any)
| 100 | } |
| 101 | |
| 102 | function toStrInt(value: any): string | undefined { |
| 103 | const n = Number(value); |
| 104 | return Number.isFinite(n) ? String(Math.trunc(n)) : undefined; |
| 105 | } |
| 106 | |
| 107 | async function formatEntity( |
| 108 | target: any, |
no outgoing calls
no test coverage detected