mol_plot_all 1.2.868 → 1.2.869
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.
- package/node.d.ts +1 -1
- package/node.deps.json +1 -1
- package/node.js +2 -4
- package/node.js.map +1 -1
- package/node.mjs +2 -4
- package/node.test.js +2 -4
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +1 -1
- package/web.deps.json +1 -1
- package/web.js +2 -4
- package/web.js.map +1 -1
- package/web.mjs +2 -4
package/node.mjs
CHANGED
|
@@ -400,8 +400,6 @@ var $;
|
|
|
400
400
|
function $mol_dev_format_native(obj) {
|
|
401
401
|
if (typeof obj === 'undefined')
|
|
402
402
|
return $.$mol_dev_format_shade('undefined');
|
|
403
|
-
if (typeof obj !== 'object' && typeof obj !== 'function')
|
|
404
|
-
return obj;
|
|
405
403
|
return [
|
|
406
404
|
'object',
|
|
407
405
|
{
|
|
@@ -1019,11 +1017,11 @@ var $;
|
|
|
1019
1017
|
return true;
|
|
1020
1018
|
}
|
|
1021
1019
|
function compare_buffer(left, right) {
|
|
1022
|
-
if (left instanceof DataView)
|
|
1023
|
-
return compare_buffer(new Uint8Array(left.buffer, left.byteOffset, left.byteLength), new Uint8Array(right.buffer, left.byteOffset, left.byteLength));
|
|
1024
1020
|
const len = left.byteLength;
|
|
1025
1021
|
if (len !== right.byteLength)
|
|
1026
1022
|
return false;
|
|
1023
|
+
if (left instanceof DataView)
|
|
1024
|
+
return compare_buffer(new Uint8Array(left.buffer, left.byteOffset, left.byteLength), new Uint8Array(right.buffer, left.byteOffset, left.byteLength));
|
|
1027
1025
|
for (let i = 0; i < len; ++i) {
|
|
1028
1026
|
if (left[i] !== right[i])
|
|
1029
1027
|
return false;
|
package/node.test.js
CHANGED
|
@@ -392,8 +392,6 @@ var $;
|
|
|
392
392
|
function $mol_dev_format_native(obj) {
|
|
393
393
|
if (typeof obj === 'undefined')
|
|
394
394
|
return $.$mol_dev_format_shade('undefined');
|
|
395
|
-
if (typeof obj !== 'object' && typeof obj !== 'function')
|
|
396
|
-
return obj;
|
|
397
395
|
return [
|
|
398
396
|
'object',
|
|
399
397
|
{
|
|
@@ -1011,11 +1009,11 @@ var $;
|
|
|
1011
1009
|
return true;
|
|
1012
1010
|
}
|
|
1013
1011
|
function compare_buffer(left, right) {
|
|
1014
|
-
if (left instanceof DataView)
|
|
1015
|
-
return compare_buffer(new Uint8Array(left.buffer, left.byteOffset, left.byteLength), new Uint8Array(right.buffer, left.byteOffset, left.byteLength));
|
|
1016
1012
|
const len = left.byteLength;
|
|
1017
1013
|
if (len !== right.byteLength)
|
|
1018
1014
|
return false;
|
|
1015
|
+
if (left instanceof DataView)
|
|
1016
|
+
return compare_buffer(new Uint8Array(left.buffer, left.byteOffset, left.byteLength), new Uint8Array(right.buffer, left.byteOffset, left.byteLength));
|
|
1019
1017
|
for (let i = 0; i < len; ++i) {
|
|
1020
1018
|
if (left[i] !== right[i])
|
|
1021
1019
|
return false;
|