123
This commit is contained in:
15
node_modules/@redis/client/dist/lib/commands/XSETID.js
generated
vendored
Normal file
15
node_modules/@redis/client/dist/lib/commands/XSETID.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.transformArguments = exports.FIRST_KEY_INDEX = void 0;
|
||||
exports.FIRST_KEY_INDEX = 1;
|
||||
function transformArguments(key, lastId, options) {
|
||||
const args = ['XSETID', key, lastId];
|
||||
if (options?.ENTRIESADDED) {
|
||||
args.push('ENTRIESADDED', options.ENTRIESADDED.toString());
|
||||
}
|
||||
if (options?.MAXDELETEDID) {
|
||||
args.push('MAXDELETEDID', options.MAXDELETEDID);
|
||||
}
|
||||
return args;
|
||||
}
|
||||
exports.transformArguments = transformArguments;
|
||||
Reference in New Issue
Block a user