chore(util) bind: add comment

This commit is contained in:
coderaiser 2014-02-12 05:10:31 -05:00
parent a89ce1eb9f
commit 4de7b4b0f8

View file

@ -55,6 +55,10 @@
}
},
/*
* bind function to arguments without context
*/
this.bind = function(callback) {
var result,
args = Util.slice(arguments, 1),