-first commit
This commit is contained in:
19
node_modules/@redis/client/dist/lib/commands/MSETNX.js
generated
vendored
Normal file
19
node_modules/@redis/client/dist/lib/commands/MSETNX.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const MSET_1 = require("./MSET");
|
||||
exports.default = {
|
||||
IS_READ_ONLY: true,
|
||||
/**
|
||||
* Constructs the MSETNX command
|
||||
*
|
||||
* @param parser - The command parser
|
||||
* @param toSet - Key-value pairs to set if none of the keys exist (array of tuples, flat array, or object)
|
||||
* @see https://redis.io/commands/msetnx/
|
||||
*/
|
||||
parseCommand(parser, toSet) {
|
||||
parser.push('MSETNX');
|
||||
return (0, MSET_1.parseMSetArguments)(parser, toSet);
|
||||
},
|
||||
transformReply: undefined
|
||||
};
|
||||
//# sourceMappingURL=MSETNX.js.map
|
||||
Reference in New Issue
Block a user