// Name: sPoNgEcAsE Text// Description: Converts input text to sPoNgEcAsE (or aLt CaPS)// Author: Luke Secombimport '@johnlindquist/kit';function sPoNgEbObCaSe(inputText: string) {return inputText.split('').map((char, index) => (index % 2 ? char.toUpperCase() : char.toLowerCase())).join('');}const userInput = await arg('Enter text');copy(sPoNgEbObCaSe(userInput));