amos-tool 1.6.6 → 1.6.7
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/global.html +1 -1
- package/docs/index.html +1 -1
- package/lib/utils.js +2 -0
- 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 Nov 24 2023
|
|
493
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri Nov 24 2023 17:11:24 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/global.html
CHANGED
|
@@ -16802,7 +16802,7 @@ schedule <code>callback</code> to execute after <code>delay</code> ms.</p></td>
|
|
|
16802
16802
|
<br class="clear">
|
|
16803
16803
|
|
|
16804
16804
|
<footer>
|
|
16805
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri Nov 24 2023
|
|
16805
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri Nov 24 2023 17:11:24 GMT+0800 (GMT+08:00) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
16806
16806
|
</footer>
|
|
16807
16807
|
|
|
16808
16808
|
<script>prettyPrint();</script>
|
package/docs/index.html
CHANGED
|
@@ -793,7 +793,7 @@ convert2BMP(canvas, width, height)</p>
|
|
|
793
793
|
<br class="clear">
|
|
794
794
|
|
|
795
795
|
<footer>
|
|
796
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri Nov 24 2023
|
|
796
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Fri Nov 24 2023 17:11:24 GMT+0800 (GMT+08:00) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
797
797
|
</footer>
|
|
798
798
|
|
|
799
799
|
<script>prettyPrint();</script>
|
package/lib/utils.js
CHANGED
|
@@ -8,6 +8,8 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
8
8
|
var t = getLength(e);
|
|
9
9
|
return "number" == typeof t && t >= 0 && t <= MAX_ARRAY_INDEX;
|
|
10
10
|
}, isNumber = function(e) {
|
|
11
|
+
if (isArray(e)) return !1;
|
|
12
|
+
if (isObject(e)) return !1;
|
|
11
13
|
var t = /^(\-|\+)?([0-9]+(\.[0-9]+)?|Infinity)$/.test(e), n = "number" == typeof e && !isNaN(e);
|
|
12
14
|
return t || n;
|
|
13
15
|
}, isFloat = function(e) {
|