{"version":3,"sources":["webpack:///./node_modules/tiny-slider/src/helpers/has3DTransforms.js"],"names":["has3DTransforms","tf","window","getComputedStyle","has3d","doc","document","body","docOverflow","el","createElement","cssTF","length","slice","toLowerCase","insertBefore","style","getPropertyValue","fake","remove","undefined"],"mappings":"0FAAA,8DAIO,SAASA,EAAgBC,GAC9B,IAAKA,EAAM,OAAO,EAClB,IAAKC,OAAOC,iBAAoB,OAAO,EAEvC,IAIIC,EAJAC,EAAMC,SACNC,EAAO,cACPC,EAAc,YAAYD,GAC1BE,EAAKJ,EAAIK,cAAc,KAEvBC,EAAQV,EAAGW,OAAS,EAAI,IAAMX,EAAGY,MAAM,GAAI,GAAGC,cAAgB,IAAM,GAYxE,OAVAH,GAAS,YAGTJ,EAAKQ,aAAaN,EAAI,MAEtBA,EAAGO,MAAMf,GAAM,2BACfG,EAAQF,OAAOC,iBAAiBM,GAAIQ,iBAAiBN,GAErDJ,EAAKW,KAAO,YAAcX,EAAMC,GAAeC,EAAGU,cAEhCC,IAAVhB,GAAuBA,EAAMQ,OAAS,GAAe,SAAVR","file":"has3DTransforms.b74df095.js","sourcesContent":["import { getBody } from './getBody.js';\nimport { setFakeBody } from './setFakeBody.js';\nimport { resetFakeBody } from './resetFakeBody.js';\n\nexport function has3DTransforms(tf){\n if (!tf) { return false; }\n if (!window.getComputedStyle) { return false; }\n \n var doc = document,\n body = getBody(),\n docOverflow = setFakeBody(body),\n el = doc.createElement('p'),\n has3d,\n cssTF = tf.length > 9 ? '-' + tf.slice(0, -9).toLowerCase() + '-' : '';\n\n cssTF += 'transform';\n\n // Add it to the body to get the computed style\n body.insertBefore(el, null);\n\n el.style[tf] = 'translate3d(1px,1px,1px)';\n has3d = window.getComputedStyle(el).getPropertyValue(cssTF);\n\n body.fake ? resetFakeBody(body, docOverflow) : el.remove();\n\n return (has3d !== undefined && has3d.length > 0 && has3d !== \"none\");\n}\n"],"sourceRoot":""}