UNPKG

261 BJavaScriptView Raw
1const IndexedDBStore = require('./IndexedDBStore')
2const MetaDataStore = require('./MetaDataStore')
3
4/**
5 * Clean old blobs without needing to import all of Uppy.
6 */
7module.exports = function cleanup () {
8 MetaDataStore.cleanup()
9 IndexedDBStore.cleanup()
10}