lib/Caches/AbstractCache.js
class AbstractCache {
constructor() {
if (new.target === Abstract) {
throw new TypeError("Cannot construct Abstract Cache directly");
}
}
}
class AbstractCache {
constructor() {
if (new.target === Abstract) {
throw new TypeError("Cannot construct Abstract Cache directly");
}
}
}