UNPKG

fips

Version:

A lookup table for FIPS and GeoIP region codes

26 lines (17 loc) 540 B
# fips [![Build Status](https://secure.travis-ci.org/AppLovin/nodejs-fips.png)](http://travis-ci.org/AppLovin/nodejs-fips) Look up FIPS 10-4 region codes. Codes are derived from the data available at http://efele.net/maps/fips-10/data/fips-414.txt as of 2/29/2012. ## Installation ### Installing npm (node package manager) ``` curl http://npmjs.org/install.sh | sh ``` ### Installing fips ``` npm install fips ``` ## Example Usage ```javascript var fips = require('fips') // prints "Dubayy" console.log(fips.longform('AE03')); ```