"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const isDOMElement_1 = __importDefault(require("./isDOMElement")); const isDOMFragment_1 = __importDefault(require("./isDOMFragment")); /** * Is the given object a DOM node that can contain child DOM nodes * * @param obj - The object to check * @return Is it a DOM container or not */ function isDOMContainer(obj) { return isDOMElement_1.default(obj) || isDOMFragment_1.default(obj); } exports.default = isDOMContainer;