DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
232 Bytes
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);
}