| 6853 | return div; |
| 6854 | } |
| 6855 | function outerSize(el) { |
| 6856 | const cs = getComputedStyle(el); |
| 6857 | const height = parseFloat(cs.marginTop) + parseFloat(cs.paddingTop) + parseFloat(cs.borderTopWidth) + el.offsetHeight + parseFloat(cs.borderBottomWidth) + parseFloat(cs.paddingBottom) + parseFloat(cs.marginBottom); |
| 6858 | const width = parseFloat(cs.marginLeft) + parseFloat(cs.paddingLeft) + parseFloat(cs.borderLeftWidth) + el.offsetWidth + parseFloat(cs.borderRightWidth) + parseFloat(cs.paddingRight) + parseFloat(cs.marginRight); |
| 6859 | return { |
| 6860 | height, |
| 6861 | width |
| 6862 | }; |
| 6863 | } |
| 6864 | |
| 6865 | },{"@parcel/transformer-js/src/esmodule-helpers.js":"jA2du"}],"17ucx":[function(require,module,exports) { |
| 6866 | var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js"); |