Files
xod/packages/xod-client-browser/test-func/utils/getCenterPositon.js
Evgeny Kochetkov e6ab08e297 chore(infra): format code with prettier
Just `yarn lint  --fix`
2018-03-05 17:59:03 +03:00

5 lines
92 B
JavaScript

export default ({ x, y, width, height }) => ({
x: x + width / 2,
y: y + height / 2,
});