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

12 lines
295 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = void 0;
function transformArguments(mode) {
const args = ['FLUSHDB'];
if (mode) {
args.push(mode);
}
return args;
}
exports.transformArguments = transformArguments;