time-to-botec/js/node_modules/@stdlib/assert/is-uri-error/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

31 lines
733 B
Plaintext

{{alias}}( value )
Tests if a value is a URIError object.
This function should *not* be considered robust. While the function should
always return `true` if provided a URIError (or a descendant) object,
false positives may occur due to the fact that the URIError constructor
inherits from Error and has no internal class of its own. Hence, URIError
impersonation is possible.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether value is a URIError object.
Examples
--------
> var bool = {{alias}}( new URIError( 'beep' ) )
true
> bool = {{alias}}( {} )
false
See Also
--------