All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.esm.utils.rectToClientRect.js Maven / Gradle / Ivy

There is a newer version: 2.11.8
Show newest version
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
  });
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy