tabel
Version:
A simple orm for PostgreSQL which works with simple javascript objects and arrays
54 lines (44 loc) • 1.86 kB
JavaScript
;
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 _require = require('lodash'),
isArray = _require.isArray;
var Queue = function () {
function Queue(client, name) {
_classCallCheck(this, Queue);
this.client = client;
this.name = name;
}
_createClass(Queue, [{
key: 'dq',
value: function dq() {
return this.client.dq(this.name);
}
}, {
key: 'nq',
value: function nq() {
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
if (isArray(args[0])) {
return this.client.nq(this.name, args[0]);
} else {
return this.client.nq(this.name, args);
}
}
}, {
key: 'range',
value: function range() {
var startI = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
var endI = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : -1;
return this.client.range(this.name, startI, endI);
}
}, {
key: 'clear',
value: function clear() {
return this.client.clear(this.name);
}
}]);
return Queue;
}();
module.exports = Queue;