dolar-argentina-node
v1.0.0
Published
A converter of the different types of argentine dollars, you only need to install it and choose between different conversion options.
Downloads
5
Maintainers
Readme
dolar-argentina-node
A converter of the different types of argentine dollars, you only need to install it and choose between different conversion options.
Un conversor de los distintos tipos de dolares de argentina, solo es necesario instalarla y elegir entre distintas opciones de convercion.
API Reference
How to use
const { Dolar } = require("dolar-argentina-node");
const test = new Dolar(<QUANTITY-DOLARS>);
test.dolarOficial()
.then(data => {
console.log(datos)
const valorSell = data.datos;
console.log('Dólar oficial:', valorSell);
})
.catch(error => console.error(error));
// {
datos: {
moneda: 'USD',
casa: 'oficial',
nombre: 'Oficial',
compra: 802.75,
venta: 842.75,
fechaActualizacion: '2024-01-26T20:33:00.000Z'
},
extra: 842.75
}
//or
const test = new Dolar(<QUANTITY-DOLARS>);
test.dolarOficial()
.then(data => {
console.log(datos)
const valorSell = data.extra;
console.log('Dólar oficial:', valorSell);
})
.catch(error => console.error(error));
// 842.75
| Parameter | Type |
| :-------- | :------- |
| dolarOficial
| int
|
| dolarBlue
| int
|
| dolarBolsa
| int
|
| dolarCCL
| int
|
| dolarTarjeta
| int
|
| dolarMayorista
| int
|
| dolarCripto
| int
|
| euro
| int
|
| realBrazil
| int
|
| pesoChileno
| int
|
| pesoUruguayo
| int
|