Files
Star-wars-card-game/node_modules/@redis/client/dist/lib/commands/BRPOPLPUSH.js
2026-01-28 00:55:06 +03:00

9 lines
348 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = exports.FIRST_KEY_INDEX = void 0;
exports.FIRST_KEY_INDEX = 1;
function transformArguments(source, destination, timeout) {
return ['BRPOPLPUSH', source, destination, timeout.toString()];
}
exports.transformArguments = transformArguments;