Convert longitude and latitude to a zipcode. Requires use of Google's Geocoding API
npm install kulbhushan-ucreate/latlng-to-zip
OR
yarn add kulbhushan-ucreate/latlng-to-zip
import reverseGeocode from 'latlng-to-zip';
reverseGeocode({latitude, longitude})
.then(zipcode => zipcode)
.catch(err => err);
npm test