Returns a JSON representation of a typed array.
$ npm install dstructs-typed-array-to-jsonvartoJSON=require('dstructs-typed-array-to-json');Returns a JSON representation of a typed array.
varjson=toJSON(newFloat64Array([1,2,3,4]));/* { "type": "Float64Array", "data": [1,2,3,4] }*/vartoJSON=require('dstructs-typed-array-to-json');vardata=newInt8Array(10);for(vari=0;i<data.length;i++){data[i]=i;}varjson=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.jsUnit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:
$ make testAll new feature development should have corresponding unit tests to validate correct functionality.
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-covIstanbul creates a ./reports/coverage directory. To access an HTML version of the report,
$ make view-covCopyright © 2015. The Compute.io Authors.