1 2 3 4 5 6 7 8 9 10 11 12 13 14
/** { "api":1, "name":"Join Lines", "description":"Joins all lines without any delimiter.", "author":"riesentoaster", "icon":"collapse", "tags":"join" } **/ function main(input) { input.text = input.text.replace('\n', ''); }