Files
backend_task/node_modules/@redis/client/dist/lib/commands/LASTSAVE.js
T
2025-02-11 15:06:41 +01:00

13 lines
403 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformReply = exports.transformArguments = exports.IS_READ_ONLY = void 0;
exports.IS_READ_ONLY = true;
function transformArguments() {
return ['LASTSAVE'];
}
exports.transformArguments = transformArguments;
function transformReply(reply) {
return new Date(reply);
}
exports.transformReply = transformReply;