This commit is contained in:
WBHarry 2026-04-19 11:36:33 +02:00
parent cac00e4b30
commit 58b855389d
8 changed files with 52 additions and 24 deletions

View file

@ -17,7 +17,6 @@ export default class RegisterHandlebarsHelpers {
pluralize: this.pluralize,
positive: this.positive,
isNullish: this.isNullish,
debug: this.debug,
});
}
static add(a, b) {
@ -93,9 +92,4 @@ export default class RegisterHandlebarsHelpers {
static isNullish(a) {
return a === null || a === undefined;
}
static debug(a) {
console.log(a);
return a;
}
}