mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
Fix test in newer opera.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user