Add browser-polyfills, remove lodash assign, compact, values

(re: #6087)
This commit is contained in:
Bryan Housel
2019-03-22 17:14:41 -04:00
parent 547267d7b6
commit 11bfeaabfc
21 changed files with 65 additions and 132 deletions
+1 -3
View File
@@ -1,5 +1,3 @@
import _values from 'lodash-es/values';
import { select as d3_select } from 'd3-selection';
import { data, dataImperial, dataDriveLeft } from '../../data';
@@ -94,7 +92,7 @@ export function svgDebug(projection, context) {
var community = layer.selectAll('path.debug-community')
.data(showsCommunity ? _values(data.community.features) : []);
.data(showsCommunity ? Object.values(data.community.features) : []);
community.exit()
.remove();