aotrautils-srv 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 (09/04/2026-01:44:45)»*/
3
+ /*utils COMMONS library associated with aotra version : «1_29072022-2359 (09/04/2026-02:00:37)»*/
4
4
  /*-----------------------------------------------------------------------------*/
5
5
 
6
6
 
@@ -4131,13 +4131,20 @@ window.instanciate=function(className=null){
4131
4131
  if(!classInWindow){
4132
4132
  // TRACE
4133
4133
  lognow(`ERROR : CAUTION : «${className}» class does not seem to be registered in the global object. Cannot instanciate it.`);
4134
- return newObj;
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
+
4135
4138
  }
4136
4139
  }else{
4137
4140
  // TRACE
4138
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.`);
4139
- return newObj;
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
+
4140
4146
  }
4147
+ return newObj;
4141
4148
  }
4142
4149
  }
4143
4150
 
@@ -5402,7 +5409,7 @@ AOTRAUTILS_LIB_IS_LOADED=true;
5402
5409
 
5403
5410
 
5404
5411
 
5405
- /*utils AI library associated with aotra version : «1_29072022-2359 (09/04/2026-01:44:45)»*/
5412
+ /*utils AI library associated with aotra version : «1_29072022-2359 (09/04/2026-02:00:37)»*/
5406
5413
  /*-----------------------------------------------------------------------------*/
5407
5414
 
5408
5415
 
@@ -5548,7 +5555,7 @@ getOpenAIAPIClient=(modelName, apiURL, agentRole, defaultPrompt)=>{
5548
5555
 
5549
5556
 
5550
5557
 
5551
- /*utils CONSOLE library associated with aotra version : «1_29072022-2359 (09/04/2026-01:44:45)»*/
5558
+ /*utils CONSOLE library associated with aotra version : «1_29072022-2359 (09/04/2026-02:00:37)»*/
5552
5559
  /*-----------------------------------------------------------------------------*/
5553
5560
 
5554
5561
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aotrautils-srv",
3
- "version": "0.0.1840",
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)",