Is There An Equivalent To Pythons Iterator Tools For Node.js?
I'm trying to port some code that uses Python's iterator tools to Node, however I'm not seeing any analogs out there. I'm specifically looking for a replacement for itertools.combi
Solution 1:
I was not happy with the available solutions, so I wrote my own: https://www.npmjs.com/package/iter-tools
Post a Comment for "Is There An Equivalent To Pythons Iterator Tools For Node.js?"