aotrautils 0.0.1840 → 0.0.1841

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 (05/04/2026-12:42:00)»*/
3
+ /*utils COMMONS library associated with aotra version : «1_29072022-2359 (09/04/2026-01:44:04)»*/
4
4
  /*-----------------------------------------------------------------------------*/
5
5
 
6
6
 
@@ -4117,13 +4117,30 @@ window.instanciate=function(className=null){
4117
4117
  if(className==="Array") return [];
4118
4118
 
4119
4119
 
4120
- const classInWindow=window[className];
4121
- if(!classInWindow){
4120
+ let classInWindow=globalThis[className];
4121
+ if(typeof(classInWindow)=="undefined"){
4122
4122
  // TRACE
4123
- lognow(`WARN : CAUTION : «${className}» class does not seem to be registered in the global window object. This can lead to problems instanciating it in a pure nodejs context.`);
4123
+ lognow(`WARN : CAUTION : «${className}» class does not seem to be registered in the globalThis object. This can lead to problems instanciating it in a pure nodejs context.`);
4124
+ classInWindow=window[className];
4125
+ if(typeof(classInWindow)=="undefined"){
4126
+ // TRACE
4127
+ lognow(`WARN : CAUTION : «${className}» class does not seem to be registered in the window object. This can lead to problems instanciating it in a pure nodejs context.`);
4128
+ if(typeof(global)!="undefined"){
4129
+ lognow(`WARN : Trying with global object...`);
4130
+ classInWindow=global[className];
4131
+ if(!classInWindow){
4132
+ // TRACE
4133
+ lognow(`ERROR : CAUTION : «${className}» class does not seem to be registered in the global object. Cannot instanciate it.`);
4134
+ return newObj;
4135
+ }
4136
+ }else{
4137
+ // TRACE
4138
+ lognow(`ERROR : CAUTION : «${className}» class does not seem to be accessible in the globalThis nor window object, and global object does not exist. Cannot instanciate it.`);
4139
+ return newObj;
4140
+ }
4141
+ }
4124
4142
  }
4125
4143
 
4126
-
4127
4144
  // OLD :
4128
4145
  // try{
4129
4146
  // try{
@@ -4162,6 +4179,7 @@ window.instanciate=function(className=null){
4162
4179
  // }
4163
4180
  // }
4164
4181
 
4182
+ // NEW :
4165
4183
  newObj=new classInWindow();
4166
4184
  return newObj;
4167
4185
  };
@@ -5384,7 +5402,7 @@ AOTRAUTILS_LIB_IS_LOADED=true;
5384
5402
 
5385
5403
 
5386
5404
 
5387
- /*utils CLIENT library associated with aotra version : «1_29072022-2359 (05/04/2026-12:42:00)»*/
5405
+ /*utils CLIENT library associated with aotra version : «1_29072022-2359 (09/04/2026-01:44:04)»*/
5388
5406
  /*-----------------------------------------------------------------------------*/
5389
5407
  /* ## Utility global methods in a browser (htmljs) client environment.
5390
5408
  *
@@ -13210,7 +13228,7 @@ createOritaMicroClient=function(url, port, isNode=false, staticMicroClientIdPara
13210
13228
 
13211
13229
 
13212
13230
 
13213
- /*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (05/04/2026-12:42:00)»*/
13231
+ /*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (09/04/2026-01:44:04)»*/
13214
13232
  /*-----------------------------------------------------------------------------*/
13215
13233
 
13216
13234
 
@@ -14539,10 +14557,10 @@ function rayVsUnitSphereClosestPoint(p, r) {
14539
14557
  // MUST REMAIN AT THE END OF THIS LIBRARY FILE !
14540
14558
 
14541
14559
  AOTRAUTILS_GEOMETRY_LIB_IS_LOADED=true;
14542
- /*utils 3D library associated with aotra version : «1_29072022-2359 (05/04/2026-12:42:00)»*/
14560
+ /*utils 3D library associated with aotra version : «1_29072022-2359 (09/04/2026-01:44:04)»*/
14543
14561
  /*-----------------------------------------------------------------------------*/
14544
14562
 
14545
- /*utils AI library associated with aotra version : «1_29072022-2359 (05/04/2026-12:42:00)»*/
14563
+ /*utils AI library associated with aotra version : «1_29072022-2359 (09/04/2026-01:44:04)»*/
14546
14564
  /*-----------------------------------------------------------------------------*/
14547
14565
 
14548
14566
 
@@ -14688,7 +14706,7 @@ getOpenAIAPIClient=(modelName, apiURL, agentRole, defaultPrompt)=>{
14688
14706
 
14689
14707
 
14690
14708
 
14691
- /*utils CONSOLE library associated with aotra version : «1_29072022-2359 (05/04/2026-12:42:00)»*/
14709
+ /*utils CONSOLE library associated with aotra version : «1_29072022-2359 (09/04/2026-01:44:04)»*/
14692
14710
  /*-----------------------------------------------------------------------------*/
14693
14711
 
14694
14712
 
aotrautils/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aotrautils",
3
- "version": "0.0.1840",
3
+ "version": "0.0.1841",
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)",