@stdlib/assert-is-boxed-primitive

Test if a value is a JavaScript boxed primitive.

Usage no npm install needed!

<script type="module">
  import stdlibAssertIsBoxedPrimitive from 'https://cdn.skypack.dev/@stdlib/assert-is-boxed-primitive';
</script>

README

isBoxedPrimitive

NPM version Build Status Coverage Status dependencies

Test if a value is a JavaScript boxed primitive.

Installation

npm install @stdlib/assert-is-boxed-primitive

Usage

var isBoxedPrimitive = require( '@stdlib/assert-is-boxed-primitive' );

isBoxedPrimitive( value )

Tests if a value is a JavaScript boxed primitive.

var bool = isBoxedPrimitive( new Boolean( false ) );
// returns true

bool = isBoxedPrimitive( true );
// returns false

Notes

  • Boxed primitive objects can be created with one of the following:

    • new Boolean()
    • new Number()
    • new String()
    • Object( Symbol() ) (ES6/ES2015)

Examples

var Number = require( '@stdlib/number-ctor' );
var isBoxedPrimitive = require( '@stdlib/assert-is-boxed-primitive' );

var bool = isBoxedPrimitive( new Boolean( false ) );
// returns true

bool = isBoxedPrimitive( new String( 'beep' ) );
// returns true

bool = isBoxedPrimitive( new Number( 3.14 ) );
// returns true

bool = isBoxedPrimitive( false );
// returns false

bool = isBoxedPrimitive( 0 );
// returns false

bool = isBoxedPrimitive( '' );
// returns false

bool = isBoxedPrimitive( null );
// returns false

bool = isBoxedPrimitive( void 0 );
// returns false

bool = isBoxedPrimitive( [] );
// returns false

bool = isBoxedPrimitive( {} );
// 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.