DimaRGB / text-mask-addon-iban

IBAN masks that can be used with Text Mask

Home Page:https://text-mask.github.io/text-mask

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

install

npm i text-mask-addon-iban

api

example (React)

// IbanInput.js

import React from 'react'
import MaskedInput from 'react-text-mask'
import createIBANMask from 'text-mask-addon-iban'

const ibanMask = createIBANMask('GB') // United Kingdom of Great Britain and Northern Ireland

export default (props) => (
  <MaskedInput mask={ibanMask} {...props} />
)

About

IBAN masks that can be used with Text Mask

https://text-mask.github.io/text-mask

License:The Unlicense


Languages

Language:JavaScript 100.0%