(_key: string, value: unknown)
| 14 | } |
| 15 | |
| 16 | function replacer(_key: string, value: unknown) { |
| 17 | if (typeof value === "number") { |
| 18 | return Math.round(value); |
| 19 | } |
| 20 | |
| 21 | return value; |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected