@stdlib/assert-is-reference-error

Test if a value is a ReferenceError object.

Usage no npm install needed!

<script type="module">
  import stdlibAssertIsReferenceError from 'https://cdn.skypack.dev/@stdlib/assert-is-reference-error';
</script>

README

isReferenceError

NPM version Build Status Coverage Status dependencies

Test if a value is a ReferenceError object.

Installation

npm install @stdlib/assert-is-reference-error

Usage

var isReferenceError = require( '@stdlib/assert-is-reference-error' );

isReferenceError( value )

Tests if a value is a ReferenceError object.

var bool = isReferenceError( new ReferenceError( 'beep' ) );
// returns true

Notes

  • This function should not be considered robust. While the function should always return true if provided a ReferenceError (or a descendant) object, false positives may occur due to the fact that the ReferenceError constructor inherits from Error and has no internal class of its own. Hence, ReferenceError impersonation is possible.

Examples

var isReferenceError = require( '@stdlib/assert-is-reference-error' );

var bool = isReferenceError( new ReferenceError( 'reference error' ) );
// returns true

bool = isReferenceError( new Error( 'error' ) );
// returns false

bool = isReferenceError( new EvalError( 'eval error' ) );
// returns false

bool = isReferenceError( new RangeError( 'range error' ) );
// returns false

bool = isReferenceError( new SyntaxError( 'syntax error' ) );
// returns false

bool = isReferenceError( new TypeError( 'type error' ) );
// returns false

bool = isReferenceError( new URIError( 'URI error' ) );
// returns false

bool = isReferenceError( {} );
// returns false

bool = isReferenceError( null );
// returns false

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2021. The Stdlib Authors.