File "rect.ts"

Full path: /home/fsibplc/public_html/sommilito-bank2/splide-4.1.3/src/js/utils/dom/rect/rect.ts
File size: 189 B (189 B bytes)
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

/**
 * Returns a DOMRect object of the provided element.
 *
 * @param target - An element.
 */
export function rect( target: Element ): DOMRect {
  return target.getBoundingClientRect();
}