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

13 lines
316 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = void 0;
function transformArguments(configKey, value) {
return [
'GRAPH.CONFIG',
'SET',
configKey,
value.toString()
];
}
exports.transformArguments = transformArguments;