From 126d33308fa5885923a476e4b01c284e8107555c Mon Sep 17 00:00:00 2001 From: mmd-osm Date: Tue, 27 Mar 2018 20:10:38 +0200 Subject: [PATCH] Lint fixes --- build_data.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build_data.js b/build_data.js index 67d136699..a649adc79 100644 --- a/build_data.js +++ b/build_data.js @@ -432,11 +432,11 @@ function generateTaginfo(presets, fields) { function setObjectType(tag, input) { tag.object_types = []; - const mapping = { "point" : "node", - "vertex" : "node", - "line" : "way", - "relation" : "relation", - "area" : "area" }; + const mapping = { 'point' : 'node', + 'vertex' : 'node', + 'line' : 'way', + 'relation' : 'relation', + 'area' : 'area' }; input.geometry.forEach(function(geom) { if (tag.object_types.indexOf(mapping[geom]) === -1)