
US States
List of US states and territories.
Installation
npm install states-us --save
Usage
import states from 'states-us';
console.log(states);
const example1 = states.filter((x) => x.contiguous);
console.log(example1);
const example2 = states.filter((x) => x.territory);
console.log(example2);
const example3 = states.map((x) => x.abbreviation);
console.log(example2);
The default export from states-us
is an array of State
, with the following structure:
Property | Type | Description | Example |
---|
name | string | State name. | Alaska |
abbreviation | string | State abbreviation. | AK |
territory | boolean | Indicates if the state is a territory. | false |
contiguous | boolean | Indicates if the state is contiguous. | false |
Development
npm install
npm run build