Remove isHostObject helper.

This commit is contained in:
John-David Dalton
2016-08-13 13:26:29 -07:00
parent 5cca51e978
commit a6a3f3ed80
3 changed files with 12 additions and 52 deletions

View File

@@ -10495,22 +10495,6 @@
}
});
QUnit.test('should work with host objects in IE 8 document mode (test in IE 11)', function(assert) {
assert.expect(2);
// Trigger a Chakra JIT bug.
// See https://github.com/jashkenas/underscore/issues/1621.
lodashStable.each([body, xml], function(object) {
if (object) {
lodashStable.times(100, _.isFunction);
assert.strictEqual(_.isFunction(object), false);
}
else {
skipAssert(assert);
}
});
});
QUnit.test('should work with a function from another realm', function(assert) {
assert.expect(1);