mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-08 15:33:26 +08:00
7 lines
153 B
TypeScript
7 lines
153 B
TypeScript
![]() |
export function get(obj, path) {
|
||
|
for (var i=0, path = path.split('.'), len = path.length; i < len; i++) {
|
||
|
obj = obj[path[i]];
|
||
|
}
|
||
|
return obj;
|
||
|
};
|