@visulima/string
Version: 
Functions for manipulating strings.
27 lines (24 loc) • 1.76 kB
TypeScript
export { N as NodeLocale } from '../packem_shared/types-Daae0hGf.js';
export { default as camelCase } from './camel-case.js';
export { default as capitalCase } from './capital-case.js';
export { default as constantCase } from './constant-case.js';
export { default as dotCase } from './dot-case.js';
export { default as flatCase } from './flat-case.js';
export { FlipOptions, flipCase } from './flip-case.js';
export { default as identifyCase } from './identify-case.js';
export { KebabCaseOptions, kebabCase } from './kebab-case.js';
export { default as lowerFirst } from './lower-first.js';
export { default as noCase } from './no-case.js';
export { default as pascalCase } from './pascal-case.js';
export { default as pascalSnakeCase } from './pascal-snake-case.js';
export { default as pathCase } from './path-case.js';
export { default as sentenceCase } from './sentence-case.js';
export { default as snakeCase } from './snake-case.js';
export { SplitOptions, splitByCase } from './split-by-case.js';
export { default as titleCase } from './title-case.js';
export { default as trainCase } from './train-case.js';
export { a as CamelCase, b as CapitalCase, C as CaseOptions, c as ConstantCase, D as DotCase, F as FlatCase, d as FlipCase, I as IdentifyCase, K as KebabCase, L as LocaleOptions, e as LowerFirst, N as NoCase, P as PascalCase, f as PascalSnakeCase, g as PathCase, S as SentenceCase, h as SnakeCase, i as SplitByCase, T as TitleCase, j as TrainCase, U as UpperFirst } from '../packem_shared/types-CfPsw9ix.js';
export { default as upperFirst } from './upper-first.js';
import '../packem_shared/lru-cache-B_t27XwI.js';
declare const joinSegments: <T extends string = string>(segments: string[], joiner: string) => T;
export { joinSegments };