Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 326 Bytes

Studly.md

File metadata and controls

20 lines (13 loc) · 326 Bytes

Studly

Example#1

import JStr from "@akcybex/jstr";

const result = JStr.of("foo_bar").studly().toString();
console.log(result); // Outputs: 'FooBar'

Example#2

import JStr from "@akcybex/jstr";

const result = JStr.studly("foo bar");

console.log(result); // Outputs: 'FooBar'