guardRegExp()
Last updated
Was this helpful?
Last updated
Was this helpful?
guardRegExp()
Guards the value to be a RegExp
.
Type
extends
RegExp
Payload
extends
object
value: Type
Regular expression of generic type variable Type
constrained by RegExp
to guard.
callback?: ResultCallback<Type, Payload>
The optional callback function
of ResultCallback
type with parameters, the value
that has been checked, the result
of this check, and payload
of generic type variable Payload
with optional properties from the provided payload
, to handle them before the result
return. By default, it uses resultCallback()
function.
payload?: Payload
value is Type
The return type is a boolean
as the result of its statement indicating the value
is a generic type variable Type
, by default of type captured from the supplied value
.
The return value is a boolean
indicating whether the value
is a RegExp
.
A generic type variable Type
constrained by RegExp
indicates captured type of the given value
via the return type and the parameter of the provided callback
function ResultCallback
type.
The Payload
generic type variable constrained by object
indicates the type of optional parameter of the supplied callback
function and payload
optional parameter of the guardRegExp()
function from which it captures its value.