UNPKG

stringman

Version:

Stringman does string manipulation and other string operations. Do anything from lightening color codes to swapping email address in a string!

16 lines (15 loc) 511 B
declare function retrieve(str: string): string[]; declare function isValid(str: string): boolean; declare function remove(str: string): string; declare function swap(str: string, other: string): string; declare function getDomain(str: string): string[]; declare function expression(): RegExp; declare const url: { expression: typeof expression; getDomain: typeof getDomain; isValid: typeof isValid; remove: typeof remove; retrieve: typeof retrieve; swap: typeof swap; }; export { url };