{
let doc = nlp(`wayne's World, party-time, excellent!! 🎸`)
doc.normalize({case:true, whitespace:true, possessives:false})
doc.acronyms().toUpperCase()
doc.parentheses().remove()
doc.terms(0).toTitleCase()
doc.remove('(#Emoticon|#Emoji)')
return doc.text()
}