UNPKG

@technobuddha/library

Version:
12 lines (11 loc) 272 B
import { empty } from '../constants'; /** * Remove all non-digit characters from a string * * @param input The string * @returns digits from the string */ export function extractDigits(input) { return input.replace(/\D/ug, empty); } export default extractDigits;