vue-app-sdk
Version:
14 lines (13 loc) • 357 B
JavaScript
import castPath from "./_castPath.js";
import toKey from "./_toKey.js";
function baseGet(object, path) {
path = castPath(path, object);
var index = 0, length = path.length;
while (object != null && index < length) {
object = object[toKey(path[index++])];
}
return index && index == length ? object : void 0;
}
export {
baseGet as default
};