Was just wondering if there an equivalent flatMap function in Immutable.js? I have been using this node package https://www.npmjs.com/package/flatmap for a while but I would prefer to write things like this
listObject.flatMap(x => ...)
Instead of
flatMap(listObject, x => ...)