UNPKG

cheetah-framework

Version:

Cheetah Framework JS used in all our applications

11 lines (9 loc) 212 B
/** * Directive to format phone number according to its length */ import { formatPhone } from '@cheetah/utils/Phone' export default { bind (el, binding) { el.innerHTML = formatPhone(binding.value) } }