Last active
July 29, 2016 10:16
-
-
Save roman0x58/e80e53dbbbcb51662bf3 to your computer and use it in GitHub Desktop.
CSS3 supports (es6)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
((supports, exports) => { | |
supports.forEach( | |
(support) => { | |
exports.supports = {}; | |
let el = document.body || document.documentElement; | |
let style = el.style; | |
let prefixes = ['Moz', 'Webkit', 'Ms', 'O', support.toLowerCase()]; | |
exports.supports[support] = prefixes.some((p) => typeof style[p + support] !== 'undefined'); | |
} | |
); | |
})(['Transform', 'Animation'], $); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment