Files
module4_backend_project/node_modules/@redis/search/dist/commands/DROPINDEX.js
T

12 lines
324 B
JavaScript
Raw Normal View History

2025-02-11 15:06:41 +01:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = void 0;
function transformArguments(index, options) {
const args = ['FT.DROPINDEX', index];
if (options?.DD) {
args.push('DD');
}
return args;
}
exports.transformArguments = transformArguments;