UNPKG

@technobuddha/library

Version:
9 lines (8 loc) 228 B
/** * Remove all non-digit characters from a string * @param input - The string * @returns digits from the string * @group String * @category Deconstruction */ export declare function extractDigits(input: string): string;