Files
vercel_dashboard_example/.pnpm-store/v11/files/ac/407cd2efaf8c039f88a0f8057d29e9c2a94ebbece777f60e8103b07519c1783151db8e9365767b6353602173990d02bbb09d6feea2d8fcf7a8cbac600c6820
T
2026-05-12 14:53:15 +00:00

9 lines
307 B
Plaintext

/**
* Takes a number in seconds and returns the date in the future.
* Optionally takes a second date parameter. In that case
* the date in the future will be calculated from that date instead of now.
*/
export function fromDate(time: number, date = Date.now()) {
return new Date(date + time * 1000)
}