h5-virtual-file

virtual file for browser test


Keywords
virtual, file, browser, upload, html5, FileReader
License
MIT
Install
npm install h5-virtual-file@0.1.0

Documentation

h5-virtual-file

Virtual file for browser test.

Installation

$ npm install h5-virtual-file

Example

var vfile = new VirtualFile(new Blob(['file block content']), 'filename', 20*1024*1024);


var reader = new FileReader;
reader.onload = function(e)
{
    console.log(e.target.result);
}

reader.readAsText(vfile.slice(start, end));