UNPKG

cod-string-magic

Version:

A powerful and lightweight npm library for string manipulation.

13 lines (12 loc) 608 B
declare module "cod-string-magic" { export function truncate(str: string, maxLength: number, ellipsis?: string): string; export function capitalize(str: string): string; export function capitalizeAll(str: string): string; export function reverseString(str: string): string; export function toCamelCase(str: string): string; export function toSnakeCase(str: string): string; export function toKebabCase(str: string): string; export function removeWhitespace(str: string): string; export function countWords(str: string): number; export function isPalindrome(str: string): boolean; }