Avoid != in createCallback.

This commit is contained in:
John-David Dalton
2014-04-15 22:41:01 -07:00
parent 34133b094b
commit 250ecd13bd

View File

@@ -7796,7 +7796,7 @@
func || baseCreateCallback(func, thisArg, argCount);
}
// handle "_.pluck" and "_.where" style callback shorthands
return type != 'object' ? property(func) : matches(func);
return type == 'object' ? matches(func) : property(func);
}
/**