htmgo/js/extensions/debug.ts
2024-09-12 12:15:17 -05:00

13 lines
290 B
TypeScript

import * as htmx from "htmx.org";
htmx.defineExtension("debug", {
onEvent: function (name, evt) {
if (console.debug) {
console.debug(name, evt.target, evt);
} else if (console) {
console.log("DEBUG:", name, evt.target, evt);
} else {
// noop
}
},
});