在node.js中有dojo.hitch是否相等

我正在寻找一种function,这种function绑定“这个”。 虽然写起来很简单,但在编写或使用dojo之前,我想确保它不是node.js环境中stream行模块的一部分。

(function() { alert(this.toString()); }).bind(new String("Man ES5 is awesome.")).call(); 

Function.prototype.bind [docs]

Node.js在V8上运行。 V8完全符合ES5。