Files
setup-helm/node_modules/underscore/modules/_deepGet.js
github-actions[bot] 20d2b4f98d v3 new release (#80)
2022-06-27 14:17:15 -04:00

10 lines
280 B
JavaScript

// Internal function to obtain a nested property in `obj` along `path`.
export default function deepGet(obj, path) {
var length = path.length;
for (var i = 0; i < length; i++) {
if (obj == null) return void 0;
obj = obj[path[i]];
}
return length ? obj : void 0;
}