1.0.0 • Published 2 years ago

file-input-event v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years 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

2 years ago