CLOVIS
11/05/2024, 3:43 PM!
operator in front of the function:
if (someString !matches someRegex) { … }
as sugar for
if (!(someString matches someRegex)) { … }
(inspired by !in
and !is
)ephemient
11/05/2024, 3:44 PMTgo1014
11/05/2024, 5:29 PMAlejandro Serrano.Mena
11/06/2024, 8:44 AMCLOVIS
11/06/2024, 11:03 AM!
is forbidden in this position anyway, so it shouldn't break existing code 🤔