UNPKG

nominatim-geocoder

Version:

Simple module for geocoding & reverse geocoding with OpenStreetMap. Caching ✔ - Promises ✔ - Rate Limit ✔ - Custom Endpoint ✔ - Automated tests ✔

15 lines (11 loc) 222 B
const sha1 = require('sha1') class Query { hash() { return sha1(JSON.stringify(this)) } // Axios needs a plain object plainObject() { return JSON.parse(JSON.stringify(this)) } } module.exports = Query