13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.IDBCache = void 0;
|
||
|
// $FlowFixMe
|
||
|
class IDBCache {
|
||
|
constructor() {
|
||
|
throw new Error('IDBCache is only supported in the browser');
|
||
|
}
|
||
|
}
|
||
|
exports.IDBCache = IDBCache;
|