You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. (function () {
  2. function trackUsage(eventname, obj) {
  3. //console.log('track', eventname, obj);
  4. // implement your own tracking mechanism here
  5. }
  6. if (typeof exports !== 'undefined') {
  7. module.exports = trackUsage;
  8. } else {
  9. window.trackUsage = trackUsage;
  10. }
  11. })();