fix floor in times
This commit is contained in:
parent
75fdf6137f
commit
6e7c88a620
@ -81,7 +81,7 @@ export namespace TalerPreciseTimestamp {
|
|||||||
export function fromSeconds(s: number): TalerPreciseTimestamp {
|
export function fromSeconds(s: number): TalerPreciseTimestamp {
|
||||||
return {
|
return {
|
||||||
t_s: Math.floor(s),
|
t_s: Math.floor(s),
|
||||||
off_us: (s - Math.floor(s)) / 1000 / 1000,
|
off_us: Math.floor((s - Math.floor(s)) / 1000 / 1000),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -89,7 +89,7 @@ export namespace TalerPreciseTimestamp {
|
|||||||
return {
|
return {
|
||||||
t_s: Math.floor(ms / 1000),
|
t_s: Math.floor(ms / 1000),
|
||||||
off_us: Math.floor((ms - Math.floor(ms / 100) * 1000) * 1000),
|
off_us: Math.floor((ms - Math.floor(ms / 100) * 1000) * 1000),
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -254,7 +254,7 @@ export namespace Duration {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
d_ms: d.d_us / 1000,
|
d_ms: Math.floor(d.d_us / 1000),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -371,7 +371,7 @@ export namespace AbsoluteTime {
|
|||||||
}
|
}
|
||||||
const offsetUs = t.off_us ?? 0;
|
const offsetUs = t.off_us ?? 0;
|
||||||
return {
|
return {
|
||||||
t_ms: t.t_s * 1000 + offsetUs / 1000,
|
t_ms: t.t_s * 1000 + Math.floor(offsetUs / 1000),
|
||||||
[opaque_AbsoluteTime]: true,
|
[opaque_AbsoluteTime]: true,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user