标签: coffeescript
CoffeeScript附带了一些helper functions。怎么用?例如flatten(Array)。
flatten(Array)
答案 0 :(得分:9)
这些函数似乎是供CoffeeScript编译器私人使用的。如果你想要这些功能,最好使用像Underscore.js这样的通用库。
coffee> _ = require('underscore') coffee> _.flatten [1, 2, 3, [4, 5]] [ 1, 2, 3, 4, 5 ]