UNPKG

srcsm

Version:

🧽 A simple function to make your text sound sarcastic.

7 lines (6 loc) • 183 B
export const srcsm = (string) => { return string .split("") .map((item, index) => index % 2 === 0 ? item.toUpperCase() : item.toLowerCase()) .join(""); };