12 lines
324 B
JavaScript
12 lines
324 B
JavaScript
"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;
|