📅  最后修改于: 2022-03-11 15:03:30.248000             🧑  作者: Mango
function processQ() {
// ... this will be called on each .push
}
var myEventsQ = [];
myEventsQ.push = function() { Array.prototype.push.apply(this, arguments); processQ();};