While reading the documentation I see:
_.findDeep( obj, predicate, options={
checkCircular: false,
leavesOnly: childrenPath →→ !== ←← undefined,
...
While checking the code, I see:
options = _.merge(
{
checkCircular: false,
leavesOnly: options.childrenPath →→ === ←← undefined,
pathFormat: 'string',
},
options
);
(Arrows → ← added for clarity)
While reading the documentation I see:
While checking the code, I see:
(Arrows → ← added for clarity)