UNPKG

@uppy/utils

Version:

Shared utility functions for Uppy Core and plugins maintained by the Uppy team.

15 lines 428 B
import isDOMElement from './isDOMElement.js'; /** * Find one or more DOM elements. */ function findAllDOMElements(element) { if (typeof element === 'string') { const elements = document.querySelectorAll(element); return elements.length === 0 ? null : Array.from(elements); } if (typeof element === 'object' && isDOMElement(element)) { return [element]; } return null; } export default findAllDOMElements;