UNPKG

@visulima/string

Version:

Functions for manipulating strings.

12 lines (9 loc) 409 B
import { b as CaseOptions, K as KebabCase } from '../packem_shared/types-BttWSSIk.js'; import '../packem_shared/types-BNbQJg02.js'; import '../utils.js'; 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 };