time-to-botec/squiggle/node_modules/@stdlib/assert/is-eval-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
742 B
Plaintext

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