Skip to content

pantoken / packages/utils/src / camelCase

دالة: camelCase()

camelCase(kebab): string

بيتا

حوّل سلسلة بصيغة kebab-case إلى camelCase (color-background-brandcolorBackgroundBrand).

المعلمات

kebab

string

القيم المرجعة

string

مثال

ts
import { camelCase } from "@pantoken/utils";

camelCase("color-background-brand"); // → "colorBackgroundBrand"