UNPKG

stringzy

Version:

A versatile string manipulation library providing a range of text utilities for JavaScript and Node.js applications.

53 lines (52 loc) 2.15 kB
export { camelCase } from './camelCase'; export { capitalizeWords } from './capitalizeWords'; export { constantCase } from './constantCase'; export { initials } from './initials'; export { kebabCase } from './kebabCase'; export { pascalCase } from './pascalCase'; export { removeDuplicates } from './removeDuplicates'; export { removeSpecialChars } from './removeSpecialChars'; export { removeWords } from './removeWords'; export { snakeCase } from './snakeCase'; export { titleCase } from './titleCase'; export { toSlug } from './toSlug'; export { truncateText } from './truncateText'; export { escapeHtml } from './escapeHTML'; export { maskSegment } from './maskSegment'; export { numberToText } from './numberToText/main'; import { camelCase } from './camelCase'; import { capitalizeWords } from './capitalizeWords'; import { constantCase } from './constantCase'; import { initials } from './initials'; import { kebabCase } from './kebabCase'; import { pascalCase } from './pascalCase'; import { removeDuplicates } from './removeDuplicates'; import { removeSpecialChars } from './removeSpecialChars'; import { removeWords } from './removeWords'; import { snakeCase } from './snakeCase'; import { titleCase } from './titleCase'; import { toSlug } from './toSlug'; import { truncateText } from './truncateText'; import { escapeHtml } from './escapeHTML'; import { maskSegment } from './maskSegment'; import { deburr } from './deburr'; import { numberToText } from './numberToText/main'; export declare const transformations: { camelCase: typeof camelCase; capitalizeWords: typeof capitalizeWords; constantCase: typeof constantCase; initials: typeof initials; kebabCase: typeof kebabCase; pascalCase: typeof pascalCase; removeDuplicates: typeof removeDuplicates; removeSpecialChars: typeof removeSpecialChars; removeWords: typeof removeWords; snakeCase: typeof snakeCase; titleCase: typeof titleCase; toSlug: typeof toSlug; truncateText: typeof truncateText; escapeHtml: typeof escapeHtml; maskSegment: typeof maskSegment; deburr: typeof deburr; numberToText: typeof numberToText; };