Remove unused variable - eslint warning

This commit is contained in:
Bryan Housel
2017-02-28 15:03:33 -05:00
parent cfb8826290
commit ee26472496

View File

@@ -133,7 +133,6 @@ export function svgVertices(projection, context) {
.attr('transform', 'translate(-5, -6)')
.attr('xlink:href', function(d) {
var picon = icon(d),
isPoi = picon.match(/^poi-/) !== null,
isMaki = dataFeatureIcons.indexOf(picon) !== -1;
return '#' + picon + (isMaki ? '-11' : '');
})