(date: Date)
| 407 | } |
| 408 | |
| 409 | private toNanoseconds(date: Date): string { |
| 410 | return (BigInt(date.getTime()) * 1000000n).toString(); |
| 411 | } |
| 412 | |
| 413 | private fromNanoseconds(value: string): string { |
| 414 | let parsed: bigint; |
no outgoing calls
no test coverage detected