amos-tool 1.6.16 → 1.6.17
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/math/colorUtil.js +2 -2
- 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
|
|
493
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Mon Jul 22 2024 14:08:56 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
|
@@ -19204,7 +19204,7 @@ schedule <code>callback</code> to execute after <code>delay</code> ms.</p></td>
|
|
|
19204
19204
|
<br class="clear">
|
|
19205
19205
|
|
|
19206
19206
|
<footer>
|
|
19207
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on
|
|
19207
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Mon Jul 22 2024 14:08:56 GMT+0800 (GMT+08:00) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
19208
19208
|
</footer>
|
|
19209
19209
|
|
|
19210
19210
|
<script>prettyPrint();</script>
|
package/docs/index.html
CHANGED
|
@@ -797,7 +797,7 @@ convert2BMP(canvas, width, height)</p>
|
|
|
797
797
|
<br class="clear">
|
|
798
798
|
|
|
799
799
|
<footer>
|
|
800
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on
|
|
800
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Mon Jul 22 2024 14:08:56 GMT+0800 (GMT+08:00) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
801
801
|
</footer>
|
|
802
802
|
|
|
803
803
|
<script>prettyPrint();</script>
|
package/lib/math/colorUtil.js
CHANGED
|
@@ -9,7 +9,7 @@ var utils = require("./../utils"), colorKeyWordsHexStr = require("./_keyColor"),
|
|
|
9
9
|
n < 1 && (t += n = n.toString(16).substring(2, 4));
|
|
10
10
|
} else {
|
|
11
11
|
var s = Number(e[o]).toString(16);
|
|
12
|
-
1 === s.length && (s =
|
|
12
|
+
1 === s.length && (s = "0".concat(s)), t += s;
|
|
13
13
|
}
|
|
14
14
|
return 7 !== t.length && 9 !== t.length && (t = r), t;
|
|
15
15
|
}
|
|
@@ -29,7 +29,7 @@ var utils = require("./../utils"), colorKeyWordsHexStr = require("./_keyColor"),
|
|
|
29
29
|
r.indexOf("rgb") > -1 && (e = e.replace(rgbaRegex, ""));
|
|
30
30
|
for (var t = e.split(","), o = "#", n = 0; n < t.length; n++) if (n < 3) {
|
|
31
31
|
var s = Number(t[n]).toString(16);
|
|
32
|
-
1 === s.length && (s =
|
|
32
|
+
1 === s.length && (s = "0".concat(s)), o += s;
|
|
33
33
|
}
|
|
34
34
|
return o.length > 7 && (o = r), o;
|
|
35
35
|
}, toRGBcolor = function(r) {
|