Files
micro-service-api/node_modules/@redis/client/dist/lib/commands/SCARD.js

19 lines
510 B
JavaScript
Raw Normal View History

2025-11-11 12:36:06 +07:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
CACHEABLE: true,
IS_READ_ONLY: true,
/**
* Constructs the SCARD command
*
* @param parser - The command parser
* @param key - The set key to get the cardinality of
* @see https://redis.io/commands/scard/
*/
parseCommand(parser, key) {
parser.push('SCARD');
parser.pushKey(key);
},
transformReply: undefined
};
//# sourceMappingURL=SCARD.js.map