ioredis-mock
Version:
This library emulates ioredis by performing all operations in-memory.
13 lines (10 loc) • 350 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.scan = scan;
var _scanCommand = require('../commands-utils/scan-command.common');
function scan(cursor, opt1, opt1val, opt2, opt2val) {
var allKeys = this.data.keys();
return (0, _scanCommand.scanHelper)(allKeys, 1, cursor, opt1, opt1val, opt2, opt2val);
}