You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-03 04:01:40 +03:00
* Fixes the time command response. * Adds TIME example. * Update TIME.ts * Update get-server-time.js Co-authored-by: Leibale Eidelman <leibale1998@gmail.com>
16 lines
434 B
TypeScript
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;
|
|
}
|