node-zoom2
Version:
z39.50 with Node 12+ support
21 lines (14 loc) • 337 B
JavaScript
var Record = require('./record');
module.exports = Records;
var records = Records.prototype;
function Records(records) {
this._records = records;
}
records.hasNext = function () {
return this._records.hasNext();
};
records.next = function () {
var record = this._records.next();
return new Record(record);
};
;