aotrautils 0.0.805 → 0.0.806
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.
aotrautils/aotrautils.build.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
/*utils COMMONS library associated with aotra version : «1_29072022-2359 (15/02/2024-00:
|
|
3
|
+
/*utils COMMONS library associated with aotra version : «1_29072022-2359 (15/02/2024-00:32:38)»*/
|
|
4
4
|
/*-----------------------------------------------------------------------------*/
|
|
5
5
|
|
|
6
6
|
|
|
@@ -5167,7 +5167,7 @@ AOTRAUTILS_LIB_IS_LOADED=true;
|
|
|
5167
5167
|
|
|
5168
5168
|
|
|
5169
5169
|
|
|
5170
|
-
/*utils CLIENT library associated with aotra version : «1_29072022-2359 (15/02/2024-00:
|
|
5170
|
+
/*utils CLIENT library associated with aotra version : «1_29072022-2359 (15/02/2024-00:32:38)»*/
|
|
5171
5171
|
/*-----------------------------------------------------------------------------*/
|
|
5172
5172
|
/* ## Utility global methods in a browser (htmljs) client environment.
|
|
5173
5173
|
*
|
|
@@ -13380,7 +13380,7 @@ createOritaMicroClient=function(url, port, isNode=false, staticMicroClientIdPara
|
|
|
13380
13380
|
|
|
13381
13381
|
|
|
13382
13382
|
|
|
13383
|
-
/*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (15/02/2024-00:
|
|
13383
|
+
/*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (15/02/2024-00:32:38)»*/
|
|
13384
13384
|
/*-----------------------------------------------------------------------------*/
|
|
13385
13385
|
|
|
13386
13386
|
|
|
@@ -14619,7 +14619,7 @@ function rayVsUnitSphereClosestPoint(p, r) {
|
|
|
14619
14619
|
// MUST REMAIN AT THE END OF THIS LIBRARY FILE !
|
|
14620
14620
|
|
|
14621
14621
|
AOTRAUTILS_GEOMETRY_LIB_IS_LOADED=true;
|
|
14622
|
-
/*utils SERVER library associated with aotra version : «1_29072022-2359 (15/02/2024-00:
|
|
14622
|
+
/*utils SERVER library associated with aotra version : «1_29072022-2359 (15/02/2024-00:32:38)»*/
|
|
14623
14623
|
/*-----------------------------------------------------------------------------*/
|
|
14624
14624
|
|
|
14625
14625
|
|
|
@@ -16332,15 +16332,16 @@ performHTTPRequestNode=function(completeURL,httpMethod="GET",headers={},postRequ
|
|
|
16332
16332
|
// UNLESS YOU SPECIFY in options : hostname, port, path
|
|
16333
16333
|
const request = httpHandler.request(completeURL, options, (response) => {
|
|
16334
16334
|
|
|
16335
|
-
let
|
|
16335
|
+
let responseDataStr = "";
|
|
16336
16336
|
|
|
16337
16337
|
// A chunk of data has been received.
|
|
16338
16338
|
response.on("data", (chunk) => {
|
|
16339
|
-
|
|
16339
|
+
responseDataStr += chunk;
|
|
16340
16340
|
});
|
|
16341
16341
|
|
|
16342
16342
|
// The whole response has been received.
|
|
16343
16343
|
response.on("end", () => {
|
|
16344
|
+
const responseData=stringifyObject(responseDataStr);
|
|
16344
16345
|
resolve(responseData);
|
|
16345
16346
|
});
|
|
16346
16347
|
});
|
aotrautils/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aotrautils",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.806",
|
|
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)",
|