Const
P._ is a wildcard pattern, matching any value. It's an alias to P.any.
P._
P.any
Read the documentation for P._ on GitHub
match(value) .with(P._, () => 'will always match') Copy
match(value) .with(P._, () => 'will always match')
P._
is a wildcard pattern, matching any value. It's an alias toP.any
.Read the documentation for
P._
on GitHub