Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 368 Bytes

pascal-case.md

File metadata and controls

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

PascalCase

Replace the snake_case or kebab-case string with PascalCase.

Usage

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

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