(i: number)
| 63 | // the remaining input per token (the ASCII string path was already |
| 64 | // effectively linear thanks to V8's SlicedString ropes). |
| 65 | const term = (i: number) => `${i + 1}θ^{${i + 1}}`; |
| 66 | const small = Array.from({ length: 50 }, (_, i) => term(i)).join('+'); |
| 67 | const large = Array.from({ length: 500 }, (_, i) => term(i)).join('+'); |
| 68 |
no outgoing calls
no test coverage detected