1 var LazyWrapper = require(
'./_LazyWrapper'),
2 getData = require(
'./_getData'),
3 getFuncName = require(
'./_getFuncName'),
4 lodash = require(
'./wrapperLodash');
14 function isLaziable(func) {
15 var funcName = getFuncName(func),
16 other = lodash[funcName];
18 if (typeof other !=
'function' || !(funcName in LazyWrapper.prototype)) {
24 var data = getData(other);
25 return !!data && func === data[0];
28 module.exports = isLaziable;