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