summaryrefslogtreecommitdiff
path: root/test/test-async.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-async.js')
-rwxr-xr-xtest/test-async.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/test-async.js b/test/test-async.js
index 18894b0..3601ccc 100755
--- a/test/test-async.js
+++ b/test/test-async.js
@@ -5,16 +5,6 @@
var async = require('../lib/async');
-if (!Function.prototype.bind) {
- Function.prototype.bind = function (thisArg) {
- var args = Array.prototype.slice.call(arguments, 1);
- var self = this;
- return function () {
- self.apply(thisArg, args.concat(Array.prototype.slice.call(arguments)));
- };
- };
-}
-
function eachIterator(args, x, callback) {
setTimeout(function(){
args.push(x);