Skip to content

cayasso/ustates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#ustates

Build Status NPM version

Mapping US state codes by index, name or abbreviation.

Installation

$ npm install ustates

Usage

var states = require('ustates');

// by abbreviation:
console.log(states['GA']); //-> {"index":10,"name":"Georgia","code":"GA"}

// by index
console.log(states.index[45]); //-> {"index":45,"name":"Vermont","code":"VT"}

// by name
console.log(states.name['District Of Columbia']); //-> {"index":8,"name":"District Of Columbia","code":"DC"}

// by lower case name
console.log(states.name['DISTRICT OF COLUMBIA']); //-> {"index":8,"name":"District Of Columbia","code":"DC"}

// by upper case name
console.log(states.name['district of columbia']); //-> {"index":8,"name":"District Of Columbia","code":"DC"}

See Also

  • iso-3166-2 addresses the same problem space, but works for all countries in the world. See the docs there for the API differences.

License

(The MIT License)

Copyright (c) 2014 Jonathan Brumley <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY

About

US state by index, by name and by abbreviation

Resources

Stars

Watchers

Forks

Packages

No packages published