Email or username:

Password:

Forgot your password?
2 comments
Vftdan

@mo
type word = /\w+/;
const a: word = "hello";
const b: string = a;
const c: word = <word> b;
const d: word = word.match(b) ? b : "error";
@anki

Анки 🍋🍍🍤

@mo Хотелось бы чтобы это выглядело примерно как
type Phone = String<Regex</\d{11}/>>
или что-то такое

Go Up