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
- Host: GitHub
- URL: https://github.com/codewell/distance
- Owner: codewell
- License: mit
- Created: 2019-11-15T16:13:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:17:05.000Z (over 3 years ago)
- Last Synced: 2025-09-10T20:52:21.166Z (10 months ago)
- Language: JavaScript
- Size: 671 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```