bip
v3.0.2
Published
Get balance of bip card (Chile)
Downloads
36
Readme
bip
Get balance of bip card (Chile)
Installation
npm i -S bip
Use
const bip = require('bip');
const number = 11111111;
bip(number)
.then(console.log)
.catch(console.error);
Result:
{
number: XXXXX, // a number
balance: XXXXX, // a number
date: XXXXX, // a date
message: XXXXX, // a string
valid: XXXXX // a boolean
}