1.1.1 • Published 2 years ago

state-city-brazil v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

state-city-brazil version bundle license

Get the information of the states and cities of Brazil.

How to install

Yarn

yarn add state-city-brazil

NPM

npm install --save state-city-brazil

Available methods

MethodParamsDescription
getStates-returns all states of brazil
getStatesByCitystringreturns all states by city name
getCitiesByStatestringreturns all cities in a state

How to use

ES5

var state_city_brazil = require('state_city_brazil');

console.log(state_city_brazil.getStates());

ES6

import {
  getCitiesByState,
  getStates,
  getStatesByCity,
} from 'state_city_brazil';

console.log(getStates());

Contributing

Feel free to contribute to this project. Just open a Pull Request.