Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rectToClientRect.js « utils « lib « package « popperjs - github.com/gohugoio/hugo-mod-jslibs-dist.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5685476199350782ff7a4cad6993c5febea04f53 (plain)
1
2
3
4
5
6
7
8
export default function rectToClientRect(rect) {
  return Object.assign({}, rect, {
    left: rect.x,
    top: rect.y,
    right: rect.x + rect.width,
    bottom: rect.y + rect.height
  });
}