Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 332 Bytes

Kebab.md

File metadata and controls

20 lines (13 loc) · 332 Bytes

kebab

Example#1

import JStr from "@akcybex/jstr";

const result = JStr.of("fooBar").kebab().toString();
console.log(result); // Outputs: 'foo-bar'

Example#2

import JStr from "@akcybex/jstr";

const result = JStr.kebab("Hello world");

console.log(result); // Outputs: 'hello-world'