UNPKG

uppy

Version:

Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:

13 lines (11 loc) 311 B
'use strict'; var IndexedDBStore = require('./IndexedDBStore'); var MetaDataStore = require('./MetaDataStore'); /** * Clean old blobs without needing to import all of Uppy. */ module.exports = function cleanup() { MetaDataStore.cleanup(); IndexedDBStore.cleanup(); }; //# sourceMappingURL=cleanup.js.map