Skip to content

Instantly share code, notes, and snippets.

@roman0x58
Last active July 29, 2016 10:16
Show Gist options
  • Save roman0x58/e80e53dbbbcb51662bf3 to your computer and use it in GitHub Desktop.
Save roman0x58/e80e53dbbbcb51662bf3 to your computer and use it in GitHub Desktop.
CSS3 supports (es6)
((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