(isRTL)
| 21929 | */ parcelHelpers.export(exports, "getRTL", ()=>getRTL); |
| 21930 | parcelHelpers.export(exports, "getStyleOptions", ()=>getStyleOptions); |
| 21931 | function setRTL(isRTL) { |
| 21932 | if (_rtl !== isRTL) _rtl = isRTL; |
| 21933 | } |
| 21934 | function getRTL() { |
| 21935 | if (_rtl === undefined) _rtl = typeof document !== "undefined" && !!document.documentElement && document.documentElement.getAttribute("dir") === "rtl"; |
| 21936 | return _rtl; |