1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-03 04:01:40 +03:00
Files
node-redis/packages/client/lib/commands/TIME.ts
Simon Prickett 88586048e1 Fixes the time command response. (#2008)
* Fixes the time command response.

* Adds TIME example.

* Update TIME.ts

* Update get-server-time.js

Co-authored-by: Leibale Eidelman <leibale1998@gmail.com>
2022-03-07 07:20:19 -05:00

16 lines
434 B
TypeScript

export function transformArguments(): Array<string> {
return ['TIME'];
}
interface TimeReply extends Date {
microseconds: number;
}
export function transformReply(reply: [string, string]): TimeReply {
const seconds = Number(reply[0]),
microseconds = Number(reply[1]),
d: Partial<TimeReply> = new Date(seconds * 1000 + microseconds / 1000);
d.microseconds = microseconds;
return d as TimeReply;
}