@valkey/client
Version:
The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.
17 lines (16 loc) • 557 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformReply = exports.transformArguments = void 0;
const generic_transformers_1 = require("./generic-transformers");
function transformArguments(pattern) {
const args = ["FUNCTION", "LIST"];
if (pattern) {
args.push(pattern);
}
return args;
}
exports.transformArguments = transformArguments;
function transformReply(reply) {
return reply.map(generic_transformers_1.transformFunctionListItemReply);
}
exports.transformReply = transformReply;
;