metrics.js 214 B

12345678910
  1. exports.trackEventWithTimer = function(category, id, value = 1) {
  2. if (!category || !id) {
  3. return;
  4. }
  5. Editor.Metrics._trackEventWithTimer({
  6. category,
  7. id,
  8. value,
  9. });
  10. };