if I use this on a list of strings , I don't get any escape characters but with list of integers i do get escape characters.
Enum.chunk_every([1, 2, 3, 4, 5, 6, 7, 8, 9, 10],2)
//output
[[1, 2], [3, 4], [5, 6], '\a\b', '\t\n']
if I use this on a list of strings , I don't get any escape characters but with list of integers i do get escape characters.
Enum.chunk_every([1, 2, 3, 4, 5, 6, 7, 8, 9, 10],2)
//output
[[1, 2], [3, 4], [5, 6], '\a\b', '\t\n']