(index: number)
| 58 | function createSequentialPoint3DIdLookup(count: number): Point3DIdLookup { |
| 59 | return { |
| 60 | get(index: number) { |
| 61 | return index >= 0 && index < count ? BigInt(index + 1) : undefined; |
| 62 | }, |
| 63 | }; |
| 64 | } |
| 65 |
no outgoing calls
no test coverage detected