github
1052 of 1431 branches covered (73.52%)
Branch coverage included in aggregate %.
13 of 14 new or added lines in 3 files covered. (92.86%)
24126 existing lines in 274 files now uncovered.30956 of 59925 relevant lines covered (51.66%)
2.22 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
|
} |
× |