UNPKG

textconvert

Version:

Public library to convert text into many conventions and formats.

18 lines (17 loc) 389 B
/** * Make a regex list to split words based on these patterns */ declare const regex: { name: string; description: string; values: { upperCase: RegExp; upperCaseKeepLetter: RegExp; lowerCase: RegExp; lowerUpperCase: RegExp; nonAlphabetic: RegExp; nonAlphaTest: RegExp; punctuation: RegExp; }; }; export { regex };