mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 02:47:50 +00:00
Bump to v3.9.2.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import LazyWrapper from './LazyWrapper';
|
||||
import getData from './getData';
|
||||
import getFuncName from './getFuncName';
|
||||
import lodash from '../chain/lodash';
|
||||
|
||||
@@ -11,7 +12,15 @@ import lodash from '../chain/lodash';
|
||||
*/
|
||||
function isLaziable(func) {
|
||||
var funcName = getFuncName(func);
|
||||
return !!funcName && func === lodash[funcName] && funcName in LazyWrapper.prototype;
|
||||
if (!(funcName in LazyWrapper.prototype)) {
|
||||
return false;
|
||||
}
|
||||
var other = lodash[funcName];
|
||||
if (func === other) {
|
||||
return true;
|
||||
}
|
||||
var data = getData(other);
|
||||
return !!data && func === data[0];
|
||||
}
|
||||
|
||||
export default isLaziable;
|
||||
|
||||
Reference in New Issue
Block a user