Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 689 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 689 Bytes

BIN-LOOKUP

Search bin details from various bin database

Available Sources

Installation

npm i @arnabxd/bin-lookup

or

yarn add @arnabxd/bin-lookup

Example

import { binLookup } from '@arnabxd/bin-lookup';
// or
const { binLookup } = require('@arnabxd/bin-lookup');
// using async await
let bindata = await binLookup(439129, 'bins.su');
console.log(bindata);

// or using callbacks
binLookup(439129).then((data) => console.log(data));

API