Skip to content

pantoken / packages/core/src / toKebab

Funkcija: toKebab()

toKebab(str): string

Beta

Pretvori niz v CamelCase/razmaknjen niz v kebab-case.

Parametri

str

string

Vrne

string

Primer

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

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