UNPKG

411 BJavaScriptView Raw
1/**
2 @function prefix
3 @desc Returns the appropriate CSS vendor prefix, given the current browser.
4*/
5export default function () {
6 if ("-webkit-transform" in document.body.style) return "-webkit-";else if ("-moz-transform" in document.body.style) return "-moz-";else if ("-ms-transform" in document.body.style) return "-ms-";else if ("-o-transform" in document.body.style) return "-o-";else return "";
7}
\No newline at end of file