springbokjs-db
Version:
springbokjs databases
49 lines (40 loc) • 2.07 kB
JavaScript
;
var _createClass = (function () { function defineProperties(target, props) { for (var key in props) { var prop = props[key]; prop.configurable = true; if (prop.value) prop.writable = true; } Object.defineProperties(target, props); } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
var _inherits = function (subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) subClass.__proto__ = superClass; };
var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
Object.defineProperty(exports, "__esModule", {
value: true
});
var QFind = require("./QFind").QFind;
var QFindAll = exports.QFindAll = (function (_QFind) {
function QFindAll() {
_classCallCheck(this, QFindAll);
if (_QFind != null) {
_QFind.apply(this, arguments);
}
}
_inherits(QFindAll, _QFind);
_createClass(QFindAll, {
exec: {
value: function exec() {
return this.cursor();
}
},
forEach: {
value: function forEach(callback) {
return this.cursor().then(function (cursor) {
return cursor.forEach(callback);
});
}
},
fetch: {
value: function fetch() {
return this.cursor().then(function (cursor) {
return cursor.toArray();
});
}
}
});
return QFindAll;
})(QFind);
//# sourceMappingURL=QFindAll.js.map