cpns / apps /web /src /lib /format.ts
rogasper's picture
Add new components for package creation and question detail, implement auto bundle modal, and update routing for builder combo. Also, include new hooks for job management and enhance UI with material icons and star rating components.
dbeb485
Raw
History Blame Contribute Delete
119 Bytes
export function formatLabel(fmt: string) {
return fmt.replace(/_/g, " ").replace(/\b\w/g, (l) => l.toUpperCase());
}