Is there a way to separate an ImmutableJS list into a list of multiple lists ? I'm basically looking for something like lodash's chunk but for ImmutableJS lists.
I could transform my list into an Array before passing it to chunk and convert back the response to an ImmutableJS list, but I'm told shallow transformations are not efficient and my lists are quite big.
Thank you, G.