An open API service indexing awesome lists of open source software.

https://github.com/codewell/distance

Distance between two coordinates
https://github.com/codewell/distance

Last synced: about 7 hours ago
JSON representation

Distance between two coordinates

Awesome Lists containing this project

README

          

# @codewell/distance
Calculates the distance between two coordinates `{x: x1, y: y1}` and `{x: x2, y: y2}`.

## Installation
```
npm install @codewell/distance
```

## Basic usage
```JavaScript
import distance from '@codewell/distance';

distance({x: 1, y: 1}, {x: 4, y: 5}); // => 5
```