isWrap()
Wrap.isWrap()
Wrap.isWrap()
The method checks whether the value
of any type is the Wrap
instance of any or given opening
and closing
chars.
Generic type variables
Opening
extends
string
=
string
Opening
extends
string
=
string
A generic type variable constrained by the string
, by default of the value captured from the provided opening
indicates the Opening
type of the Wrap
instance the return type.
Closing
extends
string
=
string
Closing
extends
string
=
string
A generic type variable constrained by the string
, by default of the value captured from the provided closing
indicates the Closing
type of the Wrap
instance via return type.
Text
extends
string
=
``
Text
extends
string
=
``
A generic type variable constrained by the string
, by default of the value captured from the provided text
indicates the Text
type of the Wrap
instance via return type.
Parameters
value: any
value: any
The value of any
type to test against the Wrap
instance of any or given opening
and closing
.
opening?: Opening
opening?: Opening
Optional opening chars of a generic type variable Opening
to check if the given value
contains.
closing?: Closing
closing?: Closing
Optional closing chars of a generic type variable Closing
to check if the given value
contains.
text?: Text
text?: Text
An optional text of a generic type variable Text
to check if the given value
contains.
Return type
value is Wrap<Opening, Text, Closing>
The return type is a boolean
indicating the value
parameter is an instance of Wrap
that takes a generic type variable Opening
Text
and Closing
.
Returns
The return value is a boolean
type indicating whether the value
is an instance of Wrap
of any, or the given opening
, closing
, and text
.
Example usage
Last updated