import { friendlyFormatIBAN } from '@bundled-es-modules/ibantools'; /** * Takes an unformatted IBAN and returns a formatted one. * * @param {string} modelValue value to be formatted * @return {string} formatted value */ export function formatIBAN(modelValue) { return friendlyFormatIBAN(modelValue); }