UNPKG

@technobuddha/library

Version:
9 lines (8 loc) 263 B
/** * Test a string for all punctuation characters * @param input - string to test * @returns true, if all characters in the string are punctuation * @group String * @category Categorization */ export declare function isPunctuation(input: string): boolean;