@txdfe/at
Version:
一个设计体系组件库
18 lines (13 loc) • 364 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getWidth = void 0;
var getWidth = function getWidth(elem) {
var width = elem && typeof elem.getBoundingClientRect === 'function' && elem.getBoundingClientRect().width;
if (width) {
width = +width.toFixed(6);
}
return width || 0;
};
exports.getWidth = getWidth;