aotrautils-srv 0.0.1839 → 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:24)»*/
3
+ /*utils COMMONS library associated with aotra version : «1_29072022-2359 (09/04/2026-02:00:37)»*/
4
4
  /*-----------------------------------------------------------------------------*/
5
5
 
6
6
 
@@ -4117,13 +4117,37 @@ 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
+
4135
+ // TODO : FIXME : I don't like that at all, to use eval(...), but on today I know of no other solution... :
4136
+ newObj=eval("new "+className+"();");
4137
+
4138
+ }
4139
+ }else{
4140
+ // TRACE
4141
+ 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.`);
4142
+
4143
+ // TODO : FIXME : I don't like that at all, to use eval(...), but on today I know of no other solution... :
4144
+ newObj=eval("new "+className+"();");
4145
+
4146
+ }
4147
+ return newObj;
4148
+ }
4124
4149
  }
4125
4150
 
4126
-
4127
4151
  // OLD :
4128
4152
  // try{
4129
4153
  // try{
@@ -4162,6 +4186,7 @@ window.instanciate=function(className=null){
4162
4186
  // }
4163
4187
  // }
4164
4188
 
4189
+ // NEW :
4165
4190
  newObj=new classInWindow();
4166
4191
  return newObj;
4167
4192
  };
@@ -5384,7 +5409,7 @@ AOTRAUTILS_LIB_IS_LOADED=true;
5384
5409
 
5385
5410
 
5386
5411
 
5387
- /*utils AI library associated with aotra version : «1_29072022-2359 (05/04/2026-12:42:24)»*/
5412
+ /*utils AI library associated with aotra version : «1_29072022-2359 (09/04/2026-02:00:37)»*/
5388
5413
  /*-----------------------------------------------------------------------------*/
5389
5414
 
5390
5415
 
@@ -5530,7 +5555,7 @@ getOpenAIAPIClient=(modelName, apiURL, agentRole, defaultPrompt)=>{
5530
5555
 
5531
5556
 
5532
5557
 
5533
- /*utils CONSOLE library associated with aotra version : «1_29072022-2359 (05/04/2026-12:42:24)»*/
5558
+ /*utils CONSOLE library associated with aotra version : «1_29072022-2359 (09/04/2026-02:00:37)»*/
5534
5559
  /*-----------------------------------------------------------------------------*/
5535
5560
 
5536
5561
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aotrautils-srv",
3
- "version": "0.0.1839",
3
+ "version": "0.0.1841",
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)",