aotrautils-srv 0.0.586 → 0.0.588

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
 
2
2
 
3
- /*utils COMMONS library associated with aotra version : «1_29072022-2359 (15/09/2023-01:26:52)»*/
3
+ /*utils COMMONS library associated with aotra version : «1_29072022-2359 (19/09/2023-00:03:12)»*/
4
4
  /*-----------------------------------------------------------------------------*/
5
5
 
6
6
 
@@ -503,7 +503,7 @@ window.aotestMethods.getScenariiInTest=function(test){
503
503
  return window.aotestMethods.doForAllTestsByType(allTestsByType, doOnIteration, filter, mustTerminate);
504
504
  };
505
505
 
506
- /*public*/window.aotestMethods.iterateOverValues=function(scenarioParam, doOnIterationForValue, visited=[], valuePath=""){
506
+ /*public*/window.aotestMethods.iterateOverValues=function(scenarioParam, doOnIterationForValue, visited=[], valuePath="", isValueFunction=null){
507
507
 
508
508
  // CAUTION : We ABSOLUTELY need to iterate over a deep copy, or else it will create weird incomprehensible bugs
509
509
  // if we do another recursive browsing on the initial object !!!
@@ -519,12 +519,14 @@ window.aotestMethods.getScenariiInTest=function(test){
519
519
  valuePath=basePath+"."+itemNameOrIndex;
520
520
 
521
521
  if(isArray(item)){
522
- window.aotestMethods.iterateOverValues(item, doOnIterationForValue, visited, valuePath);
522
+ window.aotestMethods.iterateOverValues(item, doOnIterationForValue, visited, valuePath, isValueFunction);
523
523
  }else if(isObject(item)){
524
- window.aotestMethods.iterateOverValues(item, doOnIterationForValue, visited, valuePath);
524
+ window.aotestMethods.iterateOverValues(item, doOnIterationForValue, visited, valuePath, isValueFunction);
525
525
  }else{
526
- scenario[itemNameOrIndex]=doOnIterationForValue(item, itemNameOrIndex, valuePath);
526
+ if(!isValueFunction || isValueFunction(item))
527
+ scenario[itemNameOrIndex]=doOnIterationForValue(item, itemNameOrIndex, valuePath);
527
528
  }
529
+
528
530
  });
529
531
 
530
532
  };
@@ -4982,7 +4984,7 @@ AOTRAUTILS_LIB_IS_LOADED=true;
4982
4984
 
4983
4985
 
4984
4986
 
4985
- /*utils SERVER library associated with aotra version : «1_29072022-2359 (15/09/2023-01:26:52)»*/
4987
+ /*utils SERVER library associated with aotra version : «1_29072022-2359 (19/09/2023-00:03:12)»*/
4986
4988
  /*-----------------------------------------------------------------------------*/
4987
4989
 
4988
4990
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aotrautils-srv",
3
- "version": "0.0.586",
3
+ "version": "0.0.588",
4
4
  "main": "aotrautils-srv.build.js",
5
5
  "description": "A library for vanilla javascript utils (server-side) used in aotra javascript CMS",
6
6
  "author": "Jeremie Ratomposon <info@alqemia.com> (https://alqemia.com)",