Skip to content

Latest commit

 

History

History
358 lines (246 loc) · 13.9 KB

README.md

File metadata and controls

358 lines (246 loc) · 13.9 KB
About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

typeOf

NPM version Build Status Coverage Status

Determine a value's type.

Usage

import typeOf from 'https://cdn.jsdelivr.net/gh/stdlib-js/utils-type-of@deno/mod.js';

typeOf( value )

Returns a value's type.

var str = typeOf( 'a' );
// returns 'string'

str = typeOf( 5 );
// returns 'number'
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

import Float32Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-float32@deno/mod.js';
import Float64Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-float64@deno/mod.js';
import Int8Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-int8@deno/mod.js';
import Int16Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-int16@deno/mod.js';
import Int32Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-int32@deno/mod.js';
import Uint8Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-uint8@deno/mod.js';
import Uint8ClampedArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-uint8c@deno/mod.js';
import Uint16Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-uint16@deno/mod.js';
import Uint32Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-uint32@deno/mod.js';
import ArrayBuffer from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-buffer@deno/mod.js';
import Symbol from 'https://cdn.jsdelivr.net/gh/stdlib-js/symbol-ctor@deno/mod.js';
import typeOf from 'https://cdn.jsdelivr.net/gh/stdlib-js/utils-type-of@deno/mod.js';

var str = typeOf( 'a' );
// returns 'string'

str = typeOf( 5 );
// returns 'number'

str = typeOf( NaN );
// returns 'number'

str = typeOf( Infinity );
// returns 'number'

str = typeOf( true );
// returns 'boolean'

str = typeOf( false );
// returns 'boolean'

str = typeOf( void 0 );
// returns 'undefined'

str = typeOf( null );
// returns 'null'

str = typeOf( [] );
// returns 'array'

str = typeOf( {} );
// returns 'object'

str = typeOf( function noop() {} );
// returns 'function'

str = typeOf( new Map() );
// returns 'map'

str = typeOf( new WeakMap() );
// returns 'weakmap'

str = typeOf( new Set() );
// returns 'set'

str = typeOf( new WeakSet() );
// returns 'weakset'

str = typeOf( Symbol( 'beep' ) );
// returns 'symbol'

str = typeOf( new Error( 'beep' ) );
// returns 'error'

str = typeOf( new TypeError( 'beep' ) );
// returns 'typeerror'

str = typeOf( new SyntaxError( 'beep' ) );
// returns 'syntaxerror'

str = typeOf( new ReferenceError( 'beep' ) );
// returns 'referenceerror'

str = typeOf( new URIError( 'beep' ) );
// returns 'urierror'

str = typeOf( new EvalError( 'beep' ) );
// returns 'evalerror'

str = typeOf( new RangeError( 'beep' ) );
// returns 'rangeerror'

str = typeOf( new Date() );
// returns 'date'

str = typeOf( /./ );
// returns 'regexp'

str = typeOf( Math );
// returns 'math'

str = typeOf( JSON );
// returns 'json'

str = typeOf( new Int8Array( 10 ) );
// returns 'int8array'

str = typeOf( new Uint8Array( 10 ) );
// returns 'uint8array'

str = typeOf( new Int16Array( 10 ) );
// returns 'int16array'

str = typeOf( new Uint16Array( 10 ) );
// returns 'uint16array'

str = typeOf( new Int32Array( 10 ) );
// returns 'int32array'

str = typeOf( new Uint32Array( 10 ) );
// returns 'uint32array'

str = typeOf( new Float32Array( 10 ) );
// returns 'float32array'

str = typeOf( new Float64Array( 10 ) );
// returns 'float64array'

str = typeOf( new ArrayBuffer( 10 ) );
// returns 'arraybuffer'

function Person1() {
    return this;
}
str = typeOf( new Person1() );
// returns 'person1'

var Person2 = function () {
    return this;
};
str = typeOf( new Person2() );
// returns ''

See Also


Notice

This package is part of stdlib, a standard library 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-2024. The Stdlib Authors.