Coffeescript 等效于 Python 中的 zip(*dict.items())

Coffeescript equivalent of zip(*dict.items()) from Python

Python 中 zip(*dict.items()) 的 Coffeescript 等效项是什么?

简单 - 如果你有一个对象 dict,

[Object.keys(dict), Object.values(dict)]