From aa6d90eacf7db346dde87a49ba07e8da73c165c1 Mon Sep 17 00:00:00 2001 From: Johnny Hausman Date: Thu, 11 Dec 2025 23:50:57 -0600 Subject: [PATCH] [wip] better documentation. --- AppBuilder/ABFactory.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/AppBuilder/ABFactory.js b/AppBuilder/ABFactory.js index 6d2cca2a..44a6cbfc 100644 --- a/AppBuilder/ABFactory.js +++ b/AppBuilder/ABFactory.js @@ -885,6 +885,12 @@ class ABFactory extends ABFactoryCore { return _.cloneDeep(value); } + /** + * implements the _.defaultsDeep function + * @param {object} target + * @param {object} source + * @returns {object} the merged object + */ defaultsDeep(target, source) { return _.defaultsDeep(target, source); }