@stdlib/assert-is-same-native-class

Test if two arguments have the same native class.

Usage no npm install needed!

<script type="module">
  import stdlibAssertIsSameNativeClass from 'https://cdn.skypack.dev/@stdlib/assert-is-same-native-class';
</script>

README

isSameNativeClass

NPM version Build Status Coverage Status

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 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

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-2022. The Stdlib Authors.