aotrautils 0.0.543 → 0.0.545

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 (22/07/2023-03:14:01)»*/
3
+ /*utils COMMONS library associated with aotra version : «1_29072022-2359 (22/07/2023-03:18:13)»*/
4
4
  /*-----------------------------------------------------------------------------*/
5
5
 
6
6
 
@@ -612,11 +612,10 @@ window.aotest=function(parameters,functionDefinition=null,ignoreTest=false,CLASS
612
612
  if(ignoreTest)
613
613
  return functionDefinition;
614
614
 
615
- var DEBUG_TRACE=true;
615
+ const DEBUG_TRACE=true;
616
616
 
617
617
  // Parameters :
618
618
  // Tested function/method name :
619
- var functionName;
620
619
  const functionNameParam=parameters.functionName;
621
620
 
622
621
 
@@ -654,7 +653,7 @@ window.aotest=function(parameters,functionDefinition=null,ignoreTest=false,CLASS
654
653
  console.log("ERROR : No function definition found for function named «"+nonull(functionNameParam, "<unknown name function>")+"», aborting test registration.");
655
654
  return null;
656
655
  }
657
- functionName=getFunctionName(functionDefinition);
656
+ let functionName=getFunctionName(functionDefinition);
658
657
 
659
658
  // Current method context initialization :
660
659
  // Test parameters population :
@@ -668,9 +667,9 @@ window.aotest=function(parameters,functionDefinition=null,ignoreTest=false,CLASS
668
667
  currentTest.name=nameParam;
669
668
 
670
669
  // (optional) Func (ie. function name) :
671
- let functionName=parameters["functionName"];
672
- if(!!functionName /*(forced to boolean)*/){
673
- currentTest["functionName"]=functionName;
670
+ let func=parameters["functionName"];
671
+ if(!!func /*(forced to boolean)*/){
672
+ currentTest["functionName"]=func;
674
673
  }
675
674
 
676
675
  // We add to the global context :
@@ -4931,7 +4930,7 @@ AOTRAUTILS_LIB_IS_LOADED=true;
4931
4930
 
4932
4931
 
4933
4932
 
4934
- /*utils CLIENT library associated with aotra version : «1_29072022-2359 (22/07/2023-03:14:01)»*/
4933
+ /*utils CLIENT library associated with aotra version : «1_29072022-2359 (22/07/2023-03:18:13)»*/
4935
4934
  /*-----------------------------------------------------------------------------*/
4936
4935
  /* ## Utility global methods in a browser (htmljs) client environment.
4937
4936
  *
@@ -13198,7 +13197,7 @@ createOritaMicroClient=function(url, port, isNode=false, staticMicroClientIdPara
13198
13197
 
13199
13198
 
13200
13199
 
13201
- /*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (22/07/2023-03:14:01)»*/
13200
+ /*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (22/07/2023-03:18:13)»*/
13202
13201
  /*-----------------------------------------------------------------------------*/
13203
13202
 
13204
13203
 
@@ -14437,7 +14436,7 @@ function rayVsUnitSphereClosestPoint(p, r) {
14437
14436
  // MUST REMAIN AT THE END OF THIS LIBRARY FILE !
14438
14437
 
14439
14438
  AOTRAUTILS_GEOMETRY_LIB_IS_LOADED=true;
14440
- /*utils SERVER library associated with aotra version : «1_29072022-2359 (22/07/2023-03:14:01)»*/
14439
+ /*utils SERVER library associated with aotra version : «1_29072022-2359 (22/07/2023-03:18:13)»*/
14441
14440
  /*-----------------------------------------------------------------------------*/
14442
14441
 
14443
14442
 
aotrautils/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aotrautils",
3
- "version": "0.0.543",
3
+ "version": "0.0.545",
4
4
  "main": "aotrautils.build.js",
5
5
  "description": "A library for vanilla javascript utils (client-side) used in aotra javascript CMS",
6
6
  "author": "Jeremie Ratomposon <info@alqemia.com> (https://alqemia.com)",