Skip to content

pascal

Basic usage

Formats the given string in pascal case fashion.

import { pascal } from 'radash'
pascal('hello world') // => 'HelloWorld'
pascal('va va boom') // => 'VaVaBoom'