UNPKG

avvo-styleguide

Version:
7 lines (5 loc) 136 B
export default function (a, b) { const dX = b.x - a.x const dY = b.y - a.y return Math.sqrt(Math.pow(dX, 2) + Math.pow(dY, 2)) }