Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 496 Bytes

Headline.md

File metadata and controls

28 lines (19 loc) · 496 Bytes

Headline

Example#1

import JStr from "@akcybex/jstr";

const str = JStr.of("hello world").headline().toString();
console.log(str); // Outputs: 'Hello World'

Example#2

import JStr from "@akcybex/jstr";

const str = JStr.of("HeLLo").headline().toString();
console.log(str); // Outputs: 'He Llo'

Example#3

import JStr from "@akcybex/jstr";

const str = JStr.headline("hELLOworld");
console.log(str); // Outputs: 'H Elloworld'