Skip to content

Instantly share code, notes, and snippets.

@orion55
Created August 28, 2023 04:38
Show Gist options
  • Save orion55/d66f7a641f82f09381b70d2bf8f0b317 to your computer and use it in GitHub Desktop.
Save orion55/d66f7a641f82f09381b70d2bf8f0b317 to your computer and use it in GitHub Desktop.
str-utils
declare module 'str-utils' {
type StrUtil = (input: string) => string;
export const strReverse: StrUtil;
export const strToLower: StrUtil;
export const strToUpper: StrUtil;
export const strRandomize: StrUtil;
export const strInvertCase: StrUtil;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment