0.2.2 • Published 1 year ago
@stdlib/assert-is-syntax-error v0.2.2
isSyntaxError
Test if a value is a SyntaxError object.
Installation
npm install @stdlib/assert-is-syntax-errorUsage
var isSyntaxError = require( '@stdlib/assert-is-syntax-error' );isSyntaxError( value )
Tests if a value is a SyntaxError object.
var bool = isSyntaxError( new SyntaxError( 'beep' ) );
// returns trueNotes
- This function should not be considered robust. While the function should always return
trueif provided aSyntaxError(or a descendant) object, false positives may occur due to the fact that theSyntaxErrorconstructor inherits fromErrorand has no internal class of its own. Hence,SyntaxErrorimpersonation is possible.
Examples
var isSyntaxError = require( '@stdlib/assert-is-syntax-error' );
var bool = isSyntaxError( new SyntaxError( 'syntax error' ) );
// returns true
bool = isSyntaxError( new Error( 'error' ) );
// returns false
bool = isSyntaxError( new EvalError( 'eval error' ) );
// returns false
bool = isSyntaxError( new ReferenceError( 'reference error' ) );
// returns false
bool = isSyntaxError( new RangeError( 'range error' ) );
// returns false
bool = isSyntaxError( new TypeError( 'type error' ) );
// returns false
bool = isSyntaxError( new URIError( 'URI error' ) );
// returns false
bool = isSyntaxError( {} );
// returns false
bool = isSyntaxError( null );
// returns falseSee Also
@stdlib/assert-is-error: test if a value is an Error object.
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
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.