file-to-array-buffer

Turn a `File` (or any `Blob`) into an `ArrayBuffer`.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
file-to-array-buffer
301.0.05 years ago5 years agoMinified + gzip package size for file-to-array-buffer in KB

Readme

File to ArrayBuffer
Turn a File (or any Blob) into an ArrayBuffer.

Installation

npm install --save file-to-array-buffer

Usage

const fileToArrayBuffer = require('file-to-array-buffer')

// <input id="fileItem" type="file" />
const file = document.getElementById('fileItem').files[0]

fileToArrayBuffer(file).then((data) => {
  console.log(data)
  //=> ArrayBuffer {byteLength: ...}
})

API

fileToArrayBuffer(file: Blob) => Promise<ArrayBuffer>

Read the data of the file into an ArrayBuffer.