mirror of
https://github.com/PotentiaRobotics/robot-gui.git
synced 2025-04-20 11:00:15 -04:00
8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
export default function dlv(obj, key, def, p, undef) {
|
|
key = key.split ? key.split('.') : key;
|
|
for (p = 0; p < key.length; p++) {
|
|
obj = obj ? obj[key[p]] : undef;
|
|
}
|
|
return obj === undef ? def : obj;
|
|
}
|