lodash: Add native method overwrite detection and optimize bind for native bind. [jddalton]

Former-commit-id: d968957e494fb828df155d2f9b0d3faf24e38b5e
This commit is contained in:
John-David Dalton
2012-05-06 17:55:23 -04:00
parent 6d3d5f77bc
commit 14c8863657
3 changed files with 59 additions and 9 deletions

View File

@@ -62,6 +62,14 @@
skipTest(1)
}
});
test('avoids overwritten native methods', function() {
if (window.lodashBadKeys) {
notDeepEqual(lodashBadKeys.keys({ 'a': 1 }), []);
} else {
skipTest(1);
}
});
}());
/*--------------------------------------------------------------------------*/