在coffeescript中返回命名函数

时间:2012-11-19 21:30:39

标签: coffeescript

我有以下javascript:

Function.prototype.debounce = function (threshold, execAsap) {

    var func = this, timeout;

    return function debounced () {
       //body
    }
};

如何在coffeescript中返回这样的命名函数?

1 个答案:

答案 0 :(得分:1)

您无法在Coffeescript中命名功能。原因在FAQ - grep中给出了“有没有办法命名函数,反射和递归?”如果你真的需要嵌入一个名字,你可以使用反引号来嵌入原始的Javascript。