bankdata-germany
Version:
Data and BIC Validator for German Banks
28 lines (25 loc) • 1.66 kB
JavaScript
;
/*!
* bankdata-germany
* Copyright (C) 2022-2024 Markus Baumer <markus@baumer.dev>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.isValidBIC = exports.bankDataByIBAN = exports.bankDataByBLZ = exports.bankDataByBIC = exports.bankDataByBBAN = void 0;
const data_1 = require("./lib/data");
Object.defineProperty(exports, "bankDataByBBAN", { enumerable: true, get: function () { return data_1.bankDataByBBAN; } });
Object.defineProperty(exports, "bankDataByBIC", { enumerable: true, get: function () { return data_1.bankDataByBIC; } });
Object.defineProperty(exports, "bankDataByBLZ", { enumerable: true, get: function () { return data_1.bankDataByBLZ; } });
Object.defineProperty(exports, "bankDataByIBAN", { enumerable: true, get: function () { return data_1.bankDataByIBAN; } });
const validate_1 = require("./lib/validate");
Object.defineProperty(exports, "isValidBIC", { enumerable: true, get: function () { return validate_1.isValidBIC; } });