pascal
Convert a string to pascal case
201 bytes
Usage
Formats the given string in pascal case fashion.
import * as import _
_ from 'radashi'
const const hw: string
hw = import _
_.function pascal(str: string): stringexport pascal
Formats the given string in pascal case fashion.
pascal('hello world') // => 'HelloWorld'const const vvb: string
vvb = import _
_.function pascal(str: string): stringexport pascal
Formats the given string in pascal case fashion.
pascal('va va boom') // => 'VaVaBoom'const const h2: string
h2 = import _
_.function pascal(str: string): stringexport pascal
Formats the given string in pascal case fashion.
pascal('helloWorld') // => 'HelloWorld'