github
1903 of 2546 branches covered (74.74%)
Branch coverage included in aggregate %.
775 of 823 new or added lines in 10 files covered. (94.17%)
17884 existing lines in 262 files now uncovered.37927 of 62547 relevant lines covered (60.64%)
158.97 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
|
} |
× |