github
1184 of 1608 branches covered (73.63%)
Branch coverage included in aggregate %.
94 of 141 new or added lines in 25 files covered. (66.67%)
22907 existing lines in 275 files now uncovered.33302 of 63049 relevant lines covered (52.82%)
7.72 hits per line
1 |
import Protobuf from 'pbf'; |
|
2 |
|
1✔ |
3 |
export function parsePbf(buffer: ArrayBuffer, TileReader) {
|
1✔ |
UNCOV
4
|
const pbf = new Protobuf(buffer); |
× |
UNCOV
5
|
const tile = TileReader.read(pbf);
|
× |
UNCOV
6
|
return tile;
|
× |
UNCOV
7
|
} |
× |