StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/to-array-buffer
Angelos Chatzimparmpas e069030893 fix the frontend 3 years ago
..
.eslintrc.json fix the frontend 3 years ago
.travis.yml fix the frontend 3 years ago
index.js fix the frontend 3 years ago
package.json fix the frontend 3 years ago
readme.md fix the frontend 3 years ago
test.js fix the frontend 3 years ago

readme.md

to-array-buffer unstable Build Status

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.

npm install to-array-buffer

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]])

© Dmitry Yv 2018. MIT Licensed.