UNPKG

@ryusei/code

Version:

<div align="center"> <a href="https://code.ryuseijs.com"> <img alt="RyuseiCode" src="https://code.ryuseijs.com/images/svg/logo.svg" width="70"> </a>

9 lines (8 loc) 240 B
/** * Returns a DOMRect object of the provided element or the selection range. * * @param target - An element or a range instance. */ export function rect( target: Element | Range ): DOMRect { return target.getBoundingClientRect(); }