防弹跳每个requestAnimationFrame运行一次的去抖动函数


var rafDebounce = require('raf-debounce');

var somethingSlow = function () {

    /*...*/

};

var debounced = rafDebounce(somethingSlow);