UNPKG

shopperman

Version:

shopping cart ui for shopify stores

15 lines 456 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isDescendant(child, parent) { if (child === parent) return true; var parentElement = child.parentElement; while (parentElement) { if (parentElement === parent) return true; parentElement = parentElement.parentElement; } return false; } exports.isDescendant = isDescendant; //# sourceMappingURL=is-descendant.js.map