file-input-event
v1.0.0
Published
Input type file event on select files or clear
Downloads
5
Readme
file-input-event
Get the byte length of an ArrayBuffer, even in engines without a .byteLength
method.
Example
const FileInputEvent = require('file-input-event');
let file_input_event = new FileInputEvent('#file-input', '#button_clear').setReadyStatusCallback((ready, files, size) => {
if(ready)
{
console.log("Ready");
}
if(!ready)
{
console.log("NOT Ready");
}
});
Tests
Simply clone the repo, npm install