initial files

This commit is contained in:
2026-04-22 11:55:23 +02:00
commit 92444ff38c
85 changed files with 16324 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
module.exports = {
// objectTree: function(context, options) {
// let ret = '';
// if (context === null || context === undefined) return ret;
// if (Array.isArray(context)) {
// context.forEach((item, index) => {
// ret += options.fn({ key: index, value: item });
// });
// } else if (typeof context === 'object') {
// for (const key in context) {
// if (context.hasOwnProperty(key)) {
// ret += options.fn({ key, value: context[key] });
// }
// }
// } else {
// // primitive Werte
// ret += options.fn({ key: null, value: context });
// }
// return ret;
// }
}