typeOf
Determine a value's type.
Installation
npm install @stdlib/utils-type-of
Usage
var typeOf = require( '@stdlib/utils-type-of' );
typeOf( value )
Returns a value's type.
var str = typeOf( 'a' );
str = typeOf( 5 );
description | value | type | notes |
---|
string | 'beep' | 'string' | |
number | 5 | 'number' | |
NaN | NaN | 'number' | |
infinity | +infinity /-infinity | 'number' | |
boolean | true /false | 'boolean' | |
null | null | 'null' | |
undefined | undefined | 'undefined' | |
array | ['beep', 5] | 'array' | |
object | {'foo': 'bar'} | 'object' | |
function | function (){} | 'function' | |
symbol | Symbol() | 'symbol' | ES2015 |
regexp | /./ | 'regexp' | Android 4.1+ |
String | new String('beep') | 'string' | |
Number | new Number(5) | 'number' | |
Boolean | new Boolean(false) | 'boolean' | |
Object | new Object() | 'object' | |
Array | new Array() | 'array' | |
Int8Array | new Int8Array() | 'int8array' | |
Uint8Array | new Uint8Array() | 'uint8array' | |
Uint8ClampedArray | new Uint8ClampedArray() | 'uint8clampedarray' | |
Int16Array | new Int16Array() | 'int16array' | |
Uint16Array | new Uint16Array() | 'uint16array' | |
Int32Array | new Int32Array() | 'int32array' | |
Uint32Array | new Uint32Array() | 'uint32array' | |
Float32Array | new Float32Array() | 'float32array' | |
Float64Array | new Float64Array() | 'float64array' | |
ArrayBuffer | new ArrayBuffer() | 'arraybuffer' | |
Buffer | new Buffer() | 'buffer' | Node.js |
Date | new Date() | 'date' | |
RegExp | new RegExp('.') | 'regexp' | Android 4.1+ |
Function | new Function('x', 'return x') | 'function' | |
Map | new Map() | 'map' | ES2015 |
WeakMap | new WeakMap() | 'weakmap' | ES2015 |
Set | new Set() | 'set' | ES2015 |
WeakSet | new WeakSet() | 'weakset' | ES2015 |
Error | new Error() | 'error' | |
TypeError | new TypeError() | 'typeerror' | |
SyntaxError | new SyntaxError() | 'syntaxerror' | |
ReferenceError | new ReferenceError() | 'referenceerror' | |
URIError | new URIError() | 'urierror' | |
RangeError | new RangeError() | 'rangeerror' | |
EvalError | new EvalError() | 'evalerror' | |
Math | Math | 'math' | |
JSON | JSON | 'json' | IE8+ |
arguments | (function(){return arguments;})() | 'arguments' | IE9+ |
custom constructor | new Beep() | 'beep' | |
anonymous constructor | new (function(){})() | '' | |
Examples
var Float32Array = require( '@stdlib/array-float32' );
var Float64Array = require( '@stdlib/array-float64' );
var Int8Array = require( '@stdlib/array-int8' );
var Int16Array = require( '@stdlib/array-int16' );
var Int32Array = require( '@stdlib/array-int32' );
var Uint8Array = require( '@stdlib/array-uint8' );
var Uint8ClampedArray = require( '@stdlib/array-uint8c' );
var Uint16Array = require( '@stdlib/array-uint16' );
var Uint32Array = require( '@stdlib/array-uint32' );
var ArrayBuffer = require( '@stdlib/array-buffer' );
var Symbol = require( '@stdlib/symbol-ctor' );
var typeOf = require( '@stdlib/utils-type-of' );
var str = typeOf( 'a' );
str = typeOf( 5 );
str = typeOf( NaN );
str = typeOf( Infinity );
str = typeOf( true );
str = typeOf( false );
str = typeOf( void 0 );
str = typeOf( null );
str = typeOf( [] );
str = typeOf( {} );
str = typeOf( function noop() {} );
str = typeOf( new Map() );
str = typeOf( new WeakMap() );
str = typeOf( new Set() );
str = typeOf( new WeakSet() );
str = typeOf( Symbol( 'beep' ) );
str = typeOf( new Error( 'beep' ) );
str = typeOf( new TypeError( 'beep' ) );
str = typeOf( new SyntaxError( 'beep' ) );
str = typeOf( new ReferenceError( 'beep' ) );
str = typeOf( new URIError( 'beep' ) );
str = typeOf( new EvalError( 'beep' ) );
str = typeOf( new RangeError( 'beep' ) );
str = typeOf( new Date() );
str = typeOf( /./ );
str = typeOf( Math );
str = typeOf( JSON );
str = typeOf( new Int8Array( 10 ) );
str = typeOf( new Uint8Array( 10 ) );
str = typeOf( new Int16Array( 10 ) );
str = typeOf( new Uint16Array( 10 ) );
str = typeOf( new Int32Array( 10 ) );
str = typeOf( new Uint32Array( 10 ) );
str = typeOf( new Float32Array( 10 ) );
str = typeOf( new Float64Array( 10 ) );
str = typeOf( new ArrayBuffer( 10 ) );
function Person1() {
return this;
}
str = typeOf( new Person1() );
var Person2 = function () {
return this;
};
str = typeOf( new Person2() );
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">