get()

in src/application/ui/src/components/ProductImage.js [37:44]


    get(key) {
        if (!this.cache.has(key)) return null;

        // Mark this key as recently accessed by moving it to the end of the access order
        this.markAsRecentlyUsed(key);

        return this.cache.get(key);
    }