Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

country_meta

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

country_meta

small package to get locale from timezone

  • 1.0.0
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

country_meta

A small package to get timezones of a country, country from a timezone & currencies from a country

Setup

Make sure to install the dependencies:

# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist

usage

countryFromTimezone

    // const countryFromTimezone: (timezone: Timezone) => Country
    const country = countryFromTimezone("Europe/Tirane")
    /*
    {
      code: 'AL',
      de: 'Albanien',
      native: 'Shqipëria',
      en: 'Albania',
      timezone: [ 'Europe/Tirane' ],
      currency_code: 'ALL'
    }
    */
    // country.code => 'AL'
    // country.de => 'Albanien'
    // country.en => 'Albania'
    // country.native => 'Shqipëria'

timezonesFromCountry

    //const timezonesFromCountry: (country: CountryLanguages) => string[]

    // code
    timezonesFromCountry('AL')
    //de
    timezonesFromCountry('Albanien')
    //en
    timezonesFromCountry('Albania')
    //native
    timezonesFromCountry('Shqipëria')
    // => ['Europe/Tirane']

currencyFromCountry

    // const currencyFromCountry: (country: CountryLanguages) => string

    // code
    currencyFromCountry("AF") 
    // de
    currencyFromCountry("Afghanistan")
    // en
    currencyFromCountry("Afghanistan")
    // native
    currencyFromCountry("افغانستان")
    // => "AFN"

Keywords

FAQs

Package last updated on 09 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc