如何使用CoffeeScript的内置辅助函数?

时间:2012-03-26 00:10:25

标签: coffeescript

CoffeeScript附带了一些helper functions。怎么用?例如flatten(Array)

1 个答案:

答案 0 :(得分:9)

这些函数似乎是供CoffeeScript编译器私人使用的。如果你想要这些功能,最好使用像Underscore.js这样的通用库。

coffee> _ = require('underscore')
coffee> _.flatten [1, 2, 3, [4, 5]]
[ 1, 2, 3, 4, 5 ]