thelounge/client/dist/js/helpers/distance.js
2022-05-21 11:47:49 -07:00

6 lines
142 B
JavaScript

function distance([x1, y1], [x2, y2]) {
return Math.hypot(x1 - x2, y1 - y2);
}
export default distance;
//# sourceMappingURL=distance.js.map