diff --git a/test/test.js b/test/test.js index 541e1fcc3..b5e115ea4 100644 --- a/test/test.js +++ b/test/test.js @@ -1233,7 +1233,7 @@ function a() {} var bound = a.bind && a.bind({}); - if (bound && !bound.prototype) { + if (bound && !('prototype' in bound)) { var bound = a.bind({}); strictEqual(_.createCallback(bound, {}), bound); }