mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 15:27:18 +00:00
7 lines
243 B
JavaScript
7 lines
243 B
JavaScript
export var getWidth = function getWidth(elem) {
|
|
var width = elem && typeof elem.getBoundingClientRect === 'function' && elem.getBoundingClientRect().width;
|
|
if (width) {
|
|
width = +width.toFixed(6);
|
|
}
|
|
return width || 0;
|
|
}; |