_: AnyPattern

P._ is a wildcard pattern, matching any value. It's an alias to P.any.

Read the documentation for P._ on GitHub

Example

match(value)
.with(P._, () => 'will always match')