Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 363 Bytes

camel-case.md

File metadata and controls

20 lines (14 loc) · 363 Bytes
category
String Operation

CamelCase

Replace the snake_case or kebab-case string with camelCase.

Usage

import type { CamelCase } from '@utype/core'

// Expect: "fooBarBaz"
type FooBarBaz = CamelCase<"foo_bar_baz">
// Expect: "fooBarBaz"
type FooBarBaz2 = CamelCase<"foo-bar-baz">