dtype
![Dependencies](http://img.shields.io/david/compute-io/dtype.svg)
Determines the underlying data type of an input value.
Installation
$ npm install compute-dtype
For use in the browser, use browserify.
Usage
var dtype = require( 'compute-dtype' );
dtype( value )
Determines the underlying data type of an input value
.
var dt = dtype( Int16Array( 10 ) );
dt = dtype( true );
The following input values are supported:
Note: values created using String
, Boolean
, and Number
constructors are Objects
and considered generic
.
Examples
var dtype = require( 'compute-dtype' );
console.log( dtype( null ) );
console.log( dtype( undefined ) );
console.log( dtype( true ) );
console.log( dtype( Math.PI ) );
console.log( dtype( 'beep' ) );
console.log( dtype( function beep(){} ) );
console.log( dtype( new Int8Array( 10 ) ) );
console.log( dtype( new Float64Array( 20 ) ) );
console.log( dtype( new Buffer( 'woot' ) ) );
console.log( dtype( [] ) );
console.log( dtype( {} ) );
console.log( dtype( new String( 'beep' ) ) );
console.log( dtype( new Boolean( true ) ) );
console.log( dtype( new Number( 5 ) ) );
To run the example code from the top-level application directory,
$ node ./examples/index.js
Tests
Unit
Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:
$ make test
All new feature development should have corresponding unit tests to validate correct functionality.
Test Coverage
This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:
$ make test-cov
Istanbul creates a ./reports/coverage
directory. To access an HTML version of the report,
$ make view-cov
License
MIT license.
Copyright
Copyright © 2015. The Compute.io Authors.