Package Exports
- node-buffer-as-typedarray
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 (node-buffer-as-typedarray) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-buffer-as-typedarray
No copy wrap node Buffer as one of the typed array views
This is a simple wrapper for node Buffer, that will simply add array like getters and setters, allowing you to use Buffer with existing js libraries, without need to copy entire Buffer.
This library uses Little Endian only.
It's unlikely anyone will need this.
#installation
$ npm install node-buffer-as-typedarray
var fs = require('fs');
var wrapper = require('node-buffer-as-typedarray');
var uint32Array = new wrapper.Uint32Array(10);
uint32Array[0] = 10;
console.log(uint32Array[0]); //10