amos-tool 1.6.22 → 1.6.23
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/docs/Logger.html +1 -1
- package/docs/RayDB.html +1 -1
- package/docs/global.html +1 -1
- package/docs/index.html +1 -1
- package/lib/utils.js +1 -1
- package/package.json +1 -1
package/docs/Logger.html
CHANGED
|
@@ -490,7 +490,7 @@ isDebug: true
|
|
|
490
490
|
<br class="clear">
|
|
491
491
|
|
|
492
492
|
<footer>
|
|
493
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri
|
|
493
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri Nov 21 2025 11:35:46 GMT+0800 (GMT+08:00) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
494
494
|
</footer>
|
|
495
495
|
|
|
496
496
|
<script>prettyPrint();</script>
|
package/docs/RayDB.html
CHANGED
|
@@ -182,7 +182,7 @@ rdb.getItem('key').then(v => {}).catch(err => console.log(err));</code></pre>
|
|
|
182
182
|
<br class="clear">
|
|
183
183
|
|
|
184
184
|
<footer>
|
|
185
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri
|
|
185
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri Nov 21 2025 11:35:46 GMT+0800 (GMT+08:00) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
186
186
|
</footer>
|
|
187
187
|
|
|
188
188
|
<script>prettyPrint();</script>
|
package/docs/global.html
CHANGED
|
@@ -19513,7 +19513,7 @@ schedule <code>callback</code> to execute after <code>delay</code> ms.</p></td>
|
|
|
19513
19513
|
<br class="clear">
|
|
19514
19514
|
|
|
19515
19515
|
<footer>
|
|
19516
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri
|
|
19516
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri Nov 21 2025 11:35:46 GMT+0800 (GMT+08:00) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
19517
19517
|
</footer>
|
|
19518
19518
|
|
|
19519
19519
|
<script>prettyPrint();</script>
|
package/docs/index.html
CHANGED
|
@@ -826,7 +826,7 @@ convert2BMP(canvas, width, height)</p>
|
|
|
826
826
|
<br class="clear">
|
|
827
827
|
|
|
828
828
|
<footer>
|
|
829
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri
|
|
829
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri Nov 21 2025 11:35:46 GMT+0800 (GMT+08:00) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
830
830
|
</footer>
|
|
831
831
|
|
|
832
832
|
<script>prettyPrint();</script>
|
package/lib/utils.js
CHANGED
|
@@ -124,7 +124,7 @@ function _isJSON(e) {
|
|
|
124
124
|
var stringIsJson = function(e) {
|
|
125
125
|
try {
|
|
126
126
|
var t = JSON.parse(e);
|
|
127
|
-
return !(isNil(t) || !isArray(t) && !isObject(t));
|
|
127
|
+
return isString(t) && (t = JSON.parse(t)), !(isNil(t) || !isArray(t) && !isObject(t));
|
|
128
128
|
} catch (t) {
|
|
129
129
|
return _isJSON(e);
|
|
130
130
|
}
|