1.0.0 • Published 6 months ago

file-input-event v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

file-input-event Version Badge

License Downloads

npm badge

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

1.0.0

6 months ago