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:

11 lines (9 loc) 261 B
const IndexedDBStore = require('./IndexedDBStore') const MetaDataStore = require('./MetaDataStore') /** * Clean old blobs without needing to import all of Uppy. */ module.exports = function cleanup () { MetaDataStore.cleanup() IndexedDBStore.cleanup() }