provinces-ca
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

NPM Version CI

CA Provinces

List of CA provinces and territories.

Installation

npm install provinces-ca --save

Usage

import provinces from 'provinces-ca';

console.log(provinces);
// => all provinces and territories

const example1 = provinces.filter((x) => !x.territory);
console.log(example1);
// => provinces only

const example2 = provinces.map((x) => x.abbreviation);
console.log(example2);
// => all provinces/territory abbreviations

The default export from provinces-ca is an array of object with the following structure:

Property Type Description Example
name string Province name. Ontario
abbreviation string Province abbreviation. ON
territory boolean Indicates if the province is a territory. false

Development

npm install
npm run build

Dependencies (0)

    Dev Dependencies (13)

    Package Sidebar

    Install

    npm i provinces-ca

    Weekly Downloads

    4,840

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    9.22 kB

    Total Files

    12

    Last publish

    Collaborators

    • justinlettau