Skip to content

Instantly share code, notes, and snippets.

@lpj145
Last active July 9, 2020 11:24
Show Gist options
  • Save lpj145/333adf719c2d4a521b6206f1feb204a7 to your computer and use it in GitHub Desktop.
Save lpj145/333adf719c2d4a521b6206f1feb204a7 to your computer and use it in GitHub Desktop.
async function getCityByZipCode(zipCode) {
if (zipCode instanceof String && zipCode.length === 8) {
return {}
}
try {
return await this.$viacep.buscarCep(zipCode)
} catch(exception( {
console.log(exception)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment