shift73k/assets_old/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js

13 lines
290 B
JavaScript
Raw Normal View History

export default function getBoundingClientRect(element) {
var rect = element.getBoundingClientRect();
return {
width: rect.width,
height: rect.height,
top: rect.top,
right: rect.right,
bottom: rect.bottom,
left: rect.left,
x: rect.left,
y: rect.top
};
}