UNPKG

ice.fo.utils

Version:

11 lines (9 loc) 175 B
export default function getNumberTextOnly(text) { if (!text) { return ''; } if (typeof text != 'string') { return text; } return text.replace(/\D/g, ''); }