UNPKG

ez-shp-storefront

Version:

A helper function collection for Shopify storefront.

15 lines (14 loc) 276 B
export class Dom { constructor() { } static getInstance() { if (!this.instance) { this.instance = new Dom(); } return this.instance; } isHidden(el) { return el.offsetParent === null; } } Dom.instance = null;