9 lines
299 B
JavaScript
9 lines
299 B
JavaScript
import { emojifyText } from './emojifyText'
|
|
import { massageStatusPlainText } from './massageStatusPlainText'
|
|
|
|
export function massageUserText (text, emojis, $autoplayGifs) {
|
|
text = text || ''
|
|
text = emojifyText(text, emojis, $autoplayGifs)
|
|
text = massageStatusPlainText(text)
|
|
return text
|
|
}
|