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

currency_contry_exchange

Package Overview
Dependencies
Maintainers
0
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

currency_contry_exchange

Changes in formats, currencies, documents and labels depending on location

  • 1.5.3
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

TypeScript

Changes in formats, currencies, documents and labels depending on location

Install

$ npm install currency_contry_exchange

Import

import { Faastlocation } from 'faastlocation';
const location = new Faastlocation();

Methods the app

labels({ contry = '', label = 'cliente' }): string
Devuelve una etiqueta específica basada en el país y la etiqueta proporcionada.

validateFormaterRut({ contry = '', rut = '', isValidate = false}): string
Valida o formatea un RUT (Rol Único Tributario) según el país especificado. 
Campo "isValidate" si esta en true valida el rut, esta en false por default para formatear rut

formaterCurrency({ contry = '', currency = 0, typeCurrenzy = '' }): string
Formatea una cantidad de moneda específica según el país.

formaterInputProps({ contry = '', typeCurrenzy = '', decimalScale, fixedDecimalScale }): object
Devuelve propiedades de objeto específicas según el país, se usa para la libreria (NumberFomat).

formaterAmount({ contry = '', amount = '', typeCurrenzy = '' }): string
Formatea una cantidad según el país especificado. 

Example

const location = new Faastlocation();

const label = location.labels({ contry: 'cl', label: 'cliente' });
console.log(label);

const formattedRut = location.validateFormaterRut({ contry: 'pe', rut: '123456789', isValidate: true, typeCurrenzy = 'EUR' });
console.log(formattedRut);

const formattedCurrency = location.formaterCurrency({ contry: 'cl', currency: 1000 });
console.log(formattedCurrency);

const formaterInputProps =  location.formaterInputProps({ contry = '', typeCurrenzy = '' })
console.log(formaterInputProps);
MethodParametersReturn rateDescription
formaterCurrency(options){ contry: string, currency: number, typeCurrenzy: string }stringFormatea un valor monetario según el país y tipo de moneda especificados.
Ejemplo: formaterCurrency({ contry: 'chile', currency: 123456.78, typeCurrenzy: 'CLP' })
formaterInputProps(options){ contry: string, typeCurrenzy: string, decimalScale?:number, fixedDecimalScale?:number }objectDevuelve un objeto con las propiedades de un input adaptado al país y tipo de moneda. Este metodo se usa con la libreria Numberformat
labels(optins){ contry: string, label:string }stringDevuelve un string
formaterAmount(optins){ contry:string, amount:number, typeCurrenzy:string }stringDevuelve un string con el monto formateado
validateFormaterRut(optins){ contry:string rut:string isValidate:boolean }string o alertaDevuelve un string si isValidate esta en true, por defecto retorna el rut formateado string

FAQs

Package last updated on 19 Nov 2024

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