Package Exports
- math-uint8-bits
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (math-uint8-bits) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Bits
Returns a string giving the literal bit representation of an unsigned 8-bit integer.
Installation
$ npm install math-uint8-bits
Usage
var bits = require( 'math-uint8-bits' );
bits( x )
Returns a string
giving the literal bit representation of an unsigned 8-bit integer.
var a = new Uint8Array( [ 1, 4, 9 ] );
var str = bits( a[0] );
// returns '00000001'
str = bits( a[1] );
// returns '00000100'
str = bits( a[2] );
// returns '00001001'
Notes
Except for [typed arrays][typed-arrays], JavaScript does __not__ provide native user support for [unsigned 8-bit integers][integer]. According to the [ECMAScript standard][ecma-262], `number` values correspond to [double-precision floating-point numbers][ieee754]. While this `function` is intended for [unsigned 8-bit integers][integer], the `function` will accept [floating-point][ieee754] values and represent the values __as if__ they are [unsigned 8-bit integers][integer]. Accordingly, care __should__ be taken to ensure that __only__ nonnegative integer values less than `256` (`2**8`) are provided.
var str = bits( 1 ); // returns '00000001' str = bits( 4 ); // returns '00000100' str = bits( 9 ); // returns '00001001' str = bits( 255 ); // returns '11111111'
Examples
var MAX_UINT8 = require( 'const-max-uint8' );
var bits = require( 'math-uint8-bits' );
var x;
var y;
var b;
var i;
x = new Uint8Array( MAX_UINT8+1 );
for ( i = 0; i < x.length; i++ ) {
x[ i ] = i;
}
// Convert unsigned 8-bit integers to literal bit representations...
for ( i = 0; i < x.length; i++ ) {
b = bits( x[i] );
y = parseInt( b, 2 );
console.log( 'x: %d, b: %s, y: %d', x[i], b, y );
}
To run the example code from the top-level application directory,
$ node ./examples/index.js
Tests
Unit
This repository uses tape for unit tests. 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
Browser Support
This repository uses Testling for browser testing. To run the tests in a (headless) local web browser, execute the following command in the top-level application directory:
$ make test-browsers
To view the tests in a local web browser,
$ make view-browser-tests
License
Copyright
Copyright © 2016. The Compute.io Authors.