to-array-buffer
v3.2.0
Published
Convert any binary data to ArrayBuffer
Downloads
171,960
Readme
to-array-buffer
Turn any binary data container into an ArrayBuffer in sync way. Detected containers:
- Buffer
- TypedArray
- ArrayBufferView
- ArrayBuffer
- data-uri string
- base64 string
- plain string
- Array
- Array of Arrays
- Number (creates new ArrayBuffer of the defined length in bytes)
- etc.
It also handles some custom data types, like ImageData
, AudioBuffer
etc., but in general it returns null
for objects not looking like binary data containers. Note also that it does not handle Blob and File, since they require async API.
var toArrayBuffer = require('to-array-buffer')
var context = require('audio-context')
// Get array buffer from any object
ab = toArrayBuffer(new Buffer(100))
ab = toArrayBuffer(new Float32Array(12))
ab = toArrayBuffer(dataURIstr)
ab = toArrayBuffer(base64str)
ab = toArrayBuffer(ndarray)
ab = toArrayBuffer([[0, 1, 0], [1, 0, 1]])
Related
- to-arraybuffer − convert Buffer to ArrayBuffer, fast implementation.
- data-uri-to-buffer − advanced data-uri decoder.
- save-file — save any input data to file in node/browser.
- buffer-to-arraybuffer — convert surely known Buffer datatype to ArrayBuffer.
© Dmitry Yv 2018. MIT Licensed.