Package Exports
- bip
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (bip) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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
}