htmgo/framework/assets/js/htmxextensions/debug.ts
2024-09-13 11:59:44 -05:00

14 lines
267 B
TypeScript

import htmx from "htmx.org";
htmx.defineExtension("debug", {
// @ts-ignore
onEvent: function (name, evt) {
if (console.debug) {
console.debug(name);
} else if (console) {
console.log("DEBUG:", name);
} else {
// noop
}
},
});