UNPKG

@daysnap/utils

Version:
9 lines (7 loc) 170 B
// src/filterPhone.ts function filterPhone(val, sep = "") { return val ? `${val.substring(0, 3)}${sep}****${sep}${val.substring(7)}` : ""; } export { filterPhone };