Home Reference Source

lib/Caches/AbstractCache.js

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