You've already forked wakapi-readme-stats
Bar graph added.
This commit is contained in:
10
node_modules/d3-geo/src/distance.js
generated
vendored
Normal file
10
node_modules/d3-geo/src/distance.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import length from "./length.js";
|
||||
|
||||
var coordinates = [null, null],
|
||||
object = {type: "LineString", coordinates: coordinates};
|
||||
|
||||
export default function(a, b) {
|
||||
coordinates[0] = a;
|
||||
coordinates[1] = b;
|
||||
return length(object);
|
||||
}
|
||||
Reference in New Issue
Block a user