UNPKG

340 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.outerWidth = void 0;
7
8var outerWidth = function outerWidth(el) {
9 var width = el.offsetWidth;
10 var style = getComputedStyle(el);
11 width += parseInt(style.marginLeft) + parseInt(style.marginRight);
12 return width;
13};
14
15exports.outerWidth = outerWidth;
\No newline at end of file