UNPKG

@malga-checkout-full/core

Version:
7 lines (5 loc) 165 B
const cleanTextOnlyNumbers = (text) => { const replacedText = text.replace(/\D/g, '').trim(); return replacedText; }; export { cleanTextOnlyNumbers as c };