UNPKG

piral

Version:

The all-in-one piral package.

12 lines 350 B
export function getContainer(selector) { if (typeof selector === 'string') { return document.querySelector(selector); } else if (selector && selector instanceof Element) { return selector; } else { return document.body.appendChild(document.createElement('div')); } } //# sourceMappingURL=options.js.map