Fix deprecation warnings

This commit is contained in:
Petr Sloup
2019-12-30 17:18:05 +01:00
parent 13ad268b43
commit 226b979592
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ module.exports = (options, repo, params, id, styles, publicUrl) => {
} else {
if (tileJSON['format'] === 'pbf') {
isGzipped = data.slice(0, 2).indexOf(
new Buffer([0x1f, 0x8b])) === 0;
Buffer.from([0x1f, 0x8b])) === 0;
if (options.dataDecoratorFunc) {
if (isGzipped) {
data = zlib.unzipSync(data);