"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = transformArguments;
function transformArguments(key, options) {
const args = ["GRAPH.MEMORY", "USAGE", key];
return options?.SAMPLES ? [...args, String(options.SAMPLES)] : [...args];
}