Skip to content

pantoken / packages/core/src / toKebab

Συνάρτηση: toKebab()

toKebab(str): string

Βήτα

Μετατρέψτε μια συμβολοσειρά CamelCase / με κενά σε kebab-case.

Παράμετροι

str

string

Επιστρέφει

string

Παράδειγμα

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

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