@stdlib/assert-is-same-native-class
v0.2.2
Published
Test if two arguments have the same native class.
Downloads
6
Readme
isSameNativeClass
Test if two arguments have the same native class.
Installation
npm install @stdlib/assert-is-same-native-class
Usage
var isSameNativeClass = require( '@stdlib/assert-is-same-native-class' );
isSameNativeClass( a, b )
Tests if two arguments a
and b
have the same native class.
var bool = isSameNativeClass( 'beep', 'boop' );
// returns true
bool = isSameNativeClass( [], {} );
// returns false
Examples
var Number = require( '@stdlib/number-ctor' );
var isSameNativeClass = require( '@stdlib/assert-is-same-native-class' );
var bool = isSameNativeClass( 3.14, new Number( 3.14 ) );
// returns true
bool = isSameNativeClass( 'beep', 'boop' );
// returns true
bool = isSameNativeClass( new TypeError( 'beep' ), new RangeError( 'boop' ) );
// returns true
bool = isSameNativeClass( [], {} );
// returns false
bool = isSameNativeClass( null, void 0 );
// returns false
See Also
@stdlib/assert-is-same-type
: test if two arguments have the same type.@stdlib/assert-is-same-value
: test if two arguments are the same value.@stdlib/assert-is-strict-equal
: test if two arguments are strictly equal.
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.