UNPKG

bankcode-bic

Version:

Convert bank codes from IBAN to BICs, Name of bank. Currently supports only some selected EU countries.

8 lines (6 loc) 231 B
import { LocalStorageCache } from "./cache.browser.js"; import { NodeCache } from "./cache.node.js"; //#region src/libs/cache.ts const Cache = "window" in globalThis ? LocalStorageCache : NodeCache; //#endregion export { Cache };