Socket
Socket
Sign inDemoInstall

currency-symbol-map

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

currency-symbol-map

A function to lookup the currency symbol for a given currency code


Version published
Maintainers
1
Created

What is currency-symbol-map?

The currency-symbol-map npm package provides a simple way to get the currency symbol for a given currency code or country. It is useful for applications that need to display currency symbols dynamically based on user input or locale settings.

What are currency-symbol-map's main functionalities?

Get currency symbol by currency code

This feature allows you to get the currency symbol for a given currency code. For example, passing 'USD' will return the dollar symbol '$'.

const currencySymbolMap = require('currency-symbol-map');
const symbol = currencySymbolMap('USD');
console.log(symbol); // Output: $

Get currency symbol by country name

This feature allows you to get the currency symbol for a given country name. For example, passing 'United States' will return the dollar symbol '$'.

const currencySymbolMap = require('currency-symbol-map');
const symbol = currencySymbolMap('United States');
console.log(symbol); // Output: $

Get currency code by currency symbol

This feature allows you to get the currency code for a given currency symbol. For example, passing '€' will return the currency code 'EUR'.

const currencySymbolMap = require('currency-symbol-map');
const code = currencySymbolMap.symbolToCurrency('€');
console.log(code); // Output: EUR

Other packages similar to currency-symbol-map

Keywords

FAQs

Package last updated on 11 Aug 2016

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