0.0.6 • Published 6 years ago

@delightfulstudio/parse-address-string v0.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

Fork of parse-address-string

Extracts street, city, state, zip, and country components from single-line address string

Major changes:

  • Remove process.nextTick dependency/replace callbacks with regular returns (React Native compatibility)
  • normalize function; normalizes state and country, if any, to use the abbreviated form (CA, US, etc.)

Example

var parseAddress = require('parse-address-string')

const addressObj = parseAddress('4296 W 7th St, Long Beach, CA 90802')
console.log('Street: ', addressObj.street_address1)
console.log('City: ', addressObj.city)
console.log('State: ', addressObj.state)
console.log('Zip: ', addressObj.postal_code)
console.log('Country: ', addressObj.country)