37097-vm/staticfiles/@popperjs/core/lib/utils/rectToClientRect.js.flow
2025-12-21 01:11:17 +00:00

13 lines
271 B
Plaintext

// @flow
import type { Rect, ClientRectObject } from '../types';
export default function rectToClientRect(rect: Rect): ClientRectObject {
return {
...rect,
left: rect.x,
top: rect.y,
right: rect.x + rect.width,
bottom: rect.y + rect.height,
};
}