midas-core
Version:
Enrich data with APIs
30 lines (22 loc) • 1.3 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var Loader = function () {
function Loader(config) {
_classCallCheck(this, Loader);
this.config = config;
this.config._target = this.config.target[Object.keys(this.config.target)[0]];
this.config._target.type = Object.keys(this.config.target)[0];
}
_createClass(Loader, [{
key: "get_type",
value: function get_type() {
return this.config._target.type;
}
}]);
return Loader;
}();
exports.default = Loader;