| 4 | // Implementation is simplified, for test only. |
| 5 | // |
| 6 | export interface PpmImage { |
| 7 | width: number |
| 8 | height: number |
| 9 | buffer: Uint8Array |
| 10 | } |
| 11 | |
| 12 | function is_empty (ch: number): boolean { |
| 13 | return ch <= 0x20 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…