1 line
1.6 KiB
JSON
1 line
1.6 KiB
JSON
{"ast":null,"code":"/*!\n * (C) Ionic http://ionicframework.com - MIT License\n */\n\n/**\n * Returns `true` if the document or host element\n * has a `dir` set to `rtl`. The host value will always\n * take priority over the root document value.\n */\nconst isRTL = hostEl => {\n if (hostEl) {\n if (hostEl.dir !== '') {\n return hostEl.dir.toLowerCase() === 'rtl';\n }\n }\n\n return (document === null || document === void 0 ? void 0 : document.dir.toLowerCase()) === 'rtl';\n};\n\nexport { isRTL as i };","map":{"version":3,"names":["isRTL","hostEl","dir","toLowerCase","document","i"],"sources":["D:/MobileDev/WRB/WrenchBoard2023a/node_modules/@ionic/core/dist/esm/dir-e8b767a8.js"],"sourcesContent":["/*!\n * (C) Ionic http://ionicframework.com - MIT License\n */\n/**\n * Returns `true` if the document or host element\n * has a `dir` set to `rtl`. The host value will always\n * take priority over the root document value.\n */\nconst isRTL = (hostEl) => {\n if (hostEl) {\n if (hostEl.dir !== '') {\n return hostEl.dir.toLowerCase() === 'rtl';\n }\n }\n return (document === null || document === void 0 ? void 0 : document.dir.toLowerCase()) === 'rtl';\n};\n\nexport { isRTL as i };\n"],"mappings":"AAAA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA,MAAMA,KAAK,GAAIC,MAAD,IAAY;EACxB,IAAIA,MAAJ,EAAY;IACV,IAAIA,MAAM,CAACC,GAAP,KAAe,EAAnB,EAAuB;MACrB,OAAOD,MAAM,CAACC,GAAP,CAAWC,WAAX,OAA6B,KAApC;IACD;EACF;;EACD,OAAO,CAACC,QAAQ,KAAK,IAAb,IAAqBA,QAAQ,KAAK,KAAK,CAAvC,GAA2C,KAAK,CAAhD,GAAoDA,QAAQ,CAACF,GAAT,CAAaC,WAAb,EAArD,MAAqF,KAA5F;AACD,CAPD;;AASA,SAASH,KAAK,IAAIK,CAAlB"},"metadata":{},"sourceType":"module"} |