Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.
Ahmet edited this page Jan 9, 2018 · 5 revisions
queue.on('[tag]:before', function() {
   console.log('test-3 beforeeee');
});
queue.on('[tag]:after', function() {
  console.log('test-3 afterrr');
});
queue.on('[tag]:*', function () {
  console.log('test beforeeee');
});
queue.on('*', function () {
  console.log('wild card');
});
queue.on('error', function () {
  console.log('error event');
});

Clone this wiki locally