UNPKG

ds-algo-study

Version:

Just experimenting with publishing a package

10 lines (8 loc) 200 B
var distance = function ( x, y ) { var difference = x - y; var euclideanDistance = Math.sqrt( difference * difference ); return euclideanDistance; }; module.exports = { distance: distance };