Skip to content

pantoken / packages/core/src / toKebab

Függvény: toKebab()

toKebab(str): string

Béta

Konvertálja a CamelCase / szóközölt karakterláncot kebab-case-re.

Paraméterek

str

string

Visszatérés

string

Példa

ts
import { toKebab } from "@pantoken/core";

toKebab("baseButton");   // → "base-button"
toKebab("Font Family");  // → "font-family"
toKebab("rebrandLight"); // → "rebrand-light"