All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.util.raf.js Maven / Gradle / Ivy

The newest version!
/* globals requestAnimationFrame, cancelAnimationFrame */
module.exports = {
  next: typeof requestAnimationFrame === 'function'
    ? function (cb) { return requestAnimationFrame(cb) }
    : function (cb) { return setTimeout(cb, 16) },
  cancel: typeof cancelAnimationFrame === 'function'
    ? function (raf) { return cancelAnimationFrame(raf) }
    : clearTimeout
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy