JSFiddle - React, Tailwind, and code Playground

by mlms13

JavaScript

window.requestAnimationFrame = window.requestAnimationFrame ||
    window.mozRequestAnimationFrame ||
    window.webkitRequestAnimationFrame ||
    window.msRequestAnimationFrame;

if (window.requestAnimationFrame) {
    alert('yay!');
} else {
    alert('boo');
}