cc038a7372
NPM Installation / build (16.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (16.x, windows-latest) (push) Has been cancelled
NPM Installation / build (17.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (17.x, windows-latest) (push) Has been cancelled
NPM Installation / build (18.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (18.x, windows-latest) (push) Has been cancelled
18 lines
460 B
JavaScript
18 lines
460 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = getProp;
|
|
function getProp(obj) {
|
|
var props = [];
|
|
for (var _i = 1; _i < arguments.length; _i++) {
|
|
props[_i - 1] = arguments[_i];
|
|
}
|
|
while (props.length > 0) {
|
|
var prop = props.shift();
|
|
if (!obj[prop]) {
|
|
return undefined;
|
|
}
|
|
obj = obj[prop];
|
|
}
|
|
return obj;
|
|
}
|
|
//# sourceMappingURL=getProp.js.map
|