Skip to content

Commit f2e4797

Browse files
committed
Remove "foo".
1 parent c5a27ec commit f2e4797

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

d3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5588,7 +5588,7 @@
55885588
var g = this.geometry(o.geometry);
55895589
return g && (o = Object.create(o), o.geometry = g, o);
55905590
},
5591-
FeatureCollection: function foo(o) {
5591+
FeatureCollection: function(o) {
55925592
var a, f, features = o.features, i = -1, n = features.length;
55935593
while (++i < n) if (f = this.Feature(features[i])) a ? a.push(f) : a = [ f ];
55945594
return a && (o = Object.create(o), o.features = a, o);

src/geo/type.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var d3_geo_typeDefaults = {
1717
return g && (o = Object.create(o), o.geometry = g, o);
1818
},
1919

20-
FeatureCollection: function foo(o) {
20+
FeatureCollection: function(o) {
2121
var a, f, features = o.features, i = -1, n = features.length;
2222
while (++i < n) if (f = this.Feature(features[i])) a ? a.push(f) : a = [f];
2323
return a && (o = Object.create(o), o.features = a, o);

0 commit comments

Comments
 (0)