deepdash
Version:
➔ 𝐃eep standalone lib / 𝐋odash extension: ✓ eachDeep ✓ filterDeep ✓ mapDeep ✓ reduceDeep ✓ pickDeep ✓ omitDeep ✓ keysDeep ✓ index ✓ condenseDeep ⋮ Parents stack ⋮ Circular check ⋮ Leaves only mode ⋮ Children mode ⋮ cherry-pick ⋮ esm
43 lines (40 loc) • 1.12 kB
JavaScript
import getEachDeep from './getEachDeep.js';
export default function getIndex(_) {
var eachDeep = getEachDeep(_);
function index(obj, options) {
options = _.merge(
{
checkCircular: false,
includeCircularPath: true,
leavesOnly: !options || options.childrenPath === undefined,
},
options || {}
);
if (options && options.leafsOnly !== undefined) {
options.leavesOnly = options.leafsOnly;
}
var eachDeepOptions = {
pathFormat: 'string',
checkCircular: options.checkCircular,
ownPropertiesOnly: options.ownPropertiesOnly,
includeRoot: options.includeRoot,
childrenPath: options.childrenPath,
rootIsChildren: options.rootIsChildren,
leavesOnly: options.leavesOnly,
};
var res = {};
eachDeep(
obj,
function (value, key, parent, context) {
if (!context.isCircular || options.includeCircularPath) {
if (context.path !== undefined) {
res[context.path] = value;
}
}
},
eachDeepOptions
);
return res;
}
return index;
}