accounts
Version:
Tempo Accounts SDK
29 lines • 1.11 kB
JavaScript
/** Returns a unix timestamp (seconds) `n` days from now. */
export function days(n) {
return Math.floor(Date.now() / 1000) + n * 24 * 60 * 60;
}
/** Returns a unix timestamp (seconds) `n` hours from now. */
export function hours(n) {
return Math.floor(Date.now() / 1000) + n * 60 * 60;
}
/** Returns a unix timestamp (seconds) `n` minutes from now. */
export function minutes(n) {
return Math.floor(Date.now() / 1000) + n * 60;
}
/** Returns a unix timestamp (seconds) `n` months (30 days) from now. */
export function months(n) {
return Math.floor(Date.now() / 1000) + n * 30 * 24 * 60 * 60;
}
/** Returns a unix timestamp (seconds) `n` seconds from now. */
export function seconds(n) {
return Math.floor(Date.now() / 1000) + n;
}
/** Returns a unix timestamp (seconds) `n` weeks from now. */
export function weeks(n) {
return Math.floor(Date.now() / 1000) + n * 7 * 24 * 60 * 60;
}
/** Returns a unix timestamp (seconds) `n` years (365 days) from now. */
export function years(n) {
return Math.floor(Date.now() / 1000) + n * 365 * 24 * 60 * 60;
}
//# sourceMappingURL=Expiry.js.map