Determine the Chebyshev distance between two points
npm install chebyshevThis module exposes the function chebyshev(a, b), which determines the Chebyshev distance between points a and b.
``js`
> const chebyshev = require('chebyshev')
> chebyshev([6, 6], [5, 2])
4

- more vector math