mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 06:55:25 +00:00
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; |