Join words into a single string with Upper Camel Case (Pascal Case)
import { intoUpperCamelCase } from 'string'intoUpperCamelCase(['hello', 'world']) // => 'HelloWorld' Copy
import { intoUpperCamelCase } from 'string'intoUpperCamelCase(['hello', 'world']) // => 'HelloWorld'
Join words into a single string with Upper Camel Case (Pascal Case)