mirror of
https://git.sr.ht/~roxwize/mipilin
synced 2025-01-31 02:53:36 +00:00
8 lines
230 B
Text
8 lines
230 B
Text
mixin invite_code_expiration(code)
|
|
- const timestamp = code.expires.getTime()
|
|
if timestamp === 0
|
|
td.subtle never
|
|
else if Date.now() >= timestamp
|
|
td.error EXPIRED
|
|
else
|
|
td= code.expiresString
|