You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 19, 2025. It is now read-only.
type InitialTimestamp extends Number {
validate() { initial(this, now) }
}
// Returns true if the value is intialized to init, or retains it's prior
// value, otherwise.
initial(value, init) { value == (prior(value) == null ? init : prior(value)) }
can be
type InitialTimestamp extends Number {
validate() { prior(value) == null ? this == now : this == prior(this) }
}