Files
doneit-web/src/plugin/deep.js
T
Peter Maquiran cf98e99531 fix dm room name
2022-01-13 11:43:36 +01:00

18 lines
344 B
JavaScript

function deepFind(obj, path) {
var paths = path.split('.')
, current = obj
, i;
for (i = 0; i < paths.length; ++i) {
if (current[paths[i]] == undefined) {
return undefined;
} else {
current = current[paths[i]];
}
}
return current;
}
module.exports = {
deepFind: deepFind,
};