Skip to content

Repository files navigation

toJSON

NPM versionBuild StatusCoverage StatusDependencies

Returns a JSON representation of a typed array.

Installation

$ npm install dstructs-typed-array-to-json

Usage

vartoJSON=require('dstructs-typed-array-to-json');

toJSON( arr )

Returns a JSON representation of a typed array.

varjson=toJSON(newFloat64Array([1,2,3,4]));/* { "type": "Float64Array", "data": [1,2,3,4] }*/

Examples

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.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.

About

Returns a JSON representation of a typed array.

Resources

Stars

3 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages