Finished animation framework

This commit is contained in:
WBHarry 2026-06-10 14:51:44 +02:00
parent 208e8192b4
commit 0961ad8d73
5 changed files with 129 additions and 97 deletions

View file

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