UNPKG

ds-algo-study

Version:

Just experimenting with publishing a package

10 lines (8 loc) 186 B
var distance = function ( x, y ) { var difference = x - y; var manhattanDistance = Math.abs( difference ); return manhattanDistance; }; module.exports = { distance: distance };