All Projects → moimikey → Iso3166 1

moimikey / Iso3166 1

Licence: mit
🇺🇸 The smallest, fastest, node module for ISO 3166-1 alpha 2/3 helper lookup/parser. Browserify/Webpack friendly.

Programming Languages

javascript
184084 projects - #8 most used programming language
language
365 projects

Projects that are alternatives of or similar to Iso3166 1

small-open-datasets
A collection of automatically-updated, ready-to-use and open-licensed datasets
Stars: ✭ 32 (+60%)
Mutual labels:  iso, country
Ethereum nvidia miner
💰 USB flash drive ISO image for Ethereum, Zcash and Monero mining with NVIDIA graphics cards and Ubuntu GNU/Linux (headless)
Stars: ✭ 772 (+3760%)
Mutual labels:  iso
Nixos Generators
Collection of image builders [[email protected]]
Stars: ✭ 355 (+1675%)
Mutual labels:  iso
Webman Mod
Extended services for PS3 console (web server, ftp server, netiso, ntfs, ps3mapi, etc.)
Stars: ✭ 554 (+2670%)
Mutual labels:  iso
Flagphonenumber
A formatted phone number UITextField with country flag picker.
Stars: ✭ 371 (+1755%)
Mutual labels:  country
Osx Iso
 Create a bootable ISO of OS X / macOS, from the installation app file
Stars: ✭ 616 (+2980%)
Mutual labels:  iso
Country Picker Android
A simple library that displays a beautiful list of all the countries allowing the user to pick the country he wishes and provide details like country code, iso code name,currency and flag.
Stars: ✭ 317 (+1485%)
Mutual labels:  country
Geochile
Esta es una api de Geocodificación, para que, con las coordenadas Latitud y Longitud se entregue una lista de ciudades cercanas.
Stars: ✭ 13 (-35%)
Mutual labels:  country
Country Json
A simple data of the world by country each in JSON format.
Stars: ✭ 688 (+3340%)
Mutual labels:  country
Multibootusb
A collection of GRUB files and scripts that will allow you to create a pendrive capable of booting different ISO files
Stars: ✭ 543 (+2615%)
Mutual labels:  iso
Os
The OS build system
Stars: ✭ 458 (+2190%)
Mutual labels:  iso
Countrypickerview
A simple, customizable view for efficiently collecting country information in iOS apps.
Stars: ✭ 397 (+1885%)
Mutual labels:  country
Bootiso
A bash program to securely create a bootable USB device from one image file.
Stars: ✭ 645 (+3125%)
Mutual labels:  iso
Php Iban
Generate, parse, validate, error-correct and present IBAN (and IIBAN) bank account information in PHP.
Stars: ✭ 368 (+1740%)
Mutual labels:  iso
Floppybird
Floppy Bird (OS)
Stars: ✭ 836 (+4080%)
Mutual labels:  iso
Grub2 Filemanager
GRUB2-based file manager
Stars: ✭ 330 (+1550%)
Mutual labels:  iso
Discutils
Utility libraries to interact with discs, filesystem formats and more
Stars: ✭ 417 (+1985%)
Mutual labels:  iso
Customarch
Arch Linux Based Custom ISOs Made With "Archiso"
Stars: ✭ 606 (+2930%)
Mutual labels:  iso
Qpdialcodepickerview
International Dial Code Picker View for Country or Area 国家或地区国际区号选择器
Stars: ✭ 15 (-25%)
Mutual labels:  country
Go country
Country is the package that helps you to get country name and dialling code by the country ISO 3166-1 Alpha-2 code.
Stars: ✭ 11 (-45%)
Mutual labels:  country

iso3166-1 Build Status

Version License Downloads Deps DevDeps

The smallest, fastest, node module for ISO 3166-1 alpha 2/3 helper lookup/parser. Browserify/Webpack friendly.

Install

npm install --save iso3166-1

Usage

var iso31661 = require('iso3166-1')
iso31661.from('USA').to3()         // USA
iso31661.from('USA').to2()         // US
iso31661.from('US').to3()          // USA
iso31661.from('US').to2()          // US
iso31661.fromLocale('en-US').to3() // USA
iso31661.fromLocale('en-US').to2() // US
var iso31661 = require('iso3166-1')
iso31661.to2('USA') // US
iso31661.to3('US')  // USA
var iso31661 = require('iso3166-1')
var locale2 = require('locale2')
iso31661.fromLocale(locale2).to3() // USA
iso31661.fromLocale(locale2).to2() // US
import iso31661 from 'iso3166-1';
iso31661.is2('US')  // true
iso31661.is3('USA') // true
iso31661.is2('XX')  // false
iso31661.is3('XXX') // false

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].