JSPM

qos-back-account-lookup

0.1.18
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • 0
    • Score
      100M100P100Q24686F
    • License ISC

    This is a package to search for possible bank names for bank account or nuban

    Package Exports

    • qos-back-account-lookup

    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 (qos-back-account-lookup) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    tm-utils

    bank-account-lookup - This is a utility package to search for possible banknames for an account number

    Installation

    "dependencies": {
      "qos-back-account-lookup": "~0.1.18" // see the "releases" section
    }

    npm install tm-utils

    Requirements

    const utils = require('qos-back-account-lookup');

    Bank Account LookUp

    • To get Bank List Suggestion for an account number
    let accountnumber = "0005516510";
    let banklist = utils.accountNumberLookup(accountnumber);
    console.log(banklist); // [{ bankName: 'DIAMOND BANK',code: '063', bankCode: '000005', bankId: 4 }, { bankName: 'PARALLEX', code: '502', bankCode: '090004', bankId: 21 ] 

    Tests

    Cli

    npm install
    npm test

    Contributors