isString
Test if a value is a string.
Installation
npm install @stdlib/assert-is-string
Usage
var isString = require( '@stdlib/assert-is-string' );
isString( value )
Tests if a value is a string
.
var bool = isString( 'beep' );
bool = isString( new String( 'beep' ) );
isString.isPrimitive( value )
Tests if a value
is a primitive string
.
var bool = isString.isPrimitive( 'beep' );
bool = isString.isPrimitive( new String( 'boop' ) );
isString.isObject( value )
Tests if a value
is a String
object.
var bool = isString.isObject( 'beep' );
bool = isString.isObject( new String( 'boop' ) );
Examples
var isString = require( '@stdlib/assert-is-string' );
var bool = isString( 'beep' );
bool = isString( new String( 'beep' ) );
bool = isString( 5 );
bool = isString( null );
bool = isString( void 0 );
bool = isString( {} );
bool = isString( [] );
bool = isString( function foo() {} );
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.
License
See LICENSE.
Copyright
Copyright © 2016-2021. The Stdlib Authors.
0.0.5 (2021-07-06)
No changes reported for this release.
</section>
<!-- /.release -->
<section class="release" id="v0.0.4">