UNPKG

tricks

Version:
6 lines (5 loc) 163 B
// HTML5 video enabled // Test to see if the HTML5 player supports AUTOPLAY const v = document.createElement('video'); const bool = !!v.play; export default bool;