UNPKG

@visulima/string

Version:

Functions for manipulating strings.

12 lines (9 loc) 412 B
import { b as CaseOptions, K as KebabCase } from '../packem_shared/types-D2-6p7t1.cjs'; import '../packem_shared/types-BNbQJg02.cjs'; import '../utils.cjs'; interface KebabCaseOptions extends CaseOptions { joiner?: string; toUpperCase?: boolean; } declare const kebabCase: <T extends string = string>(value?: T, options?: KebabCaseOptions) => KebabCase<T>; export { type KebabCaseOptions, kebabCase };