This repository was archived by the owner on May 19, 2025. It is now read-only.

Description
Existing method
type UserName extends String {
write() { root.users[this] == null }
validate() { this.length <= 50 && this.test(/^(\w)+$/) }
}
Proposed method
type UserName extends String {
write() { path /users/{this} == null }
validate() { this.length <= 50 && this.test(/^(\w)+$/) }
}