UNPKG

289 BJavaScriptView Raw
1htmx.defineExtension('debug', {
2 onEvent: function (name, evt) {
3 if (console.debug) {
4 console.debug(name, evt);
5 } else if (console) {
6 console.log("DEBUG:", name, evt);
7 } else {
8 throw "NO CONSOLE SUPPORTED"
9 }
10 }
11});