dstructs-typed-array-to-json
v1.0.0
Published
Returns a JSON representation of a typed array.
Downloads
4
Readme
toJSON
Returns a JSON representation of a typed array.
Installation
$ npm install dstructs-typed-array-to-json
Usage
var toJSON = require( 'dstructs-typed-array-to-json' );
toJSON( arr )
Returns a JSON representation of a typed array.
var json = toJSON( new Float64Array( [1,2,3,4] ) );
/*
{
"type": "Float64Array",
"data": [1,2,3,4]
}
*/
Examples
var toJSON = require( 'dstructs-typed-array-to-json' );
var data = new Int8Array( 10 );
for ( var i = 0; i < data.length; i++ ) {
data[ i ] = i;
}
var json = toJSON( data );
/*
{
"type": "Int8Array",
"data": [0,1,2,3,4,5,6,7,8,9]
}
*/
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
Copyright
Copyright © 2015. The Compute.io Authors.