String
Convert a string to pascal case
Formats the given string in pascal case fashion.
import { pascal } from 'radash' pascal('hello world') // => 'HelloWorld' pascal('va va boom') // => 'VaVaBoom'