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"