@mtkruto/node 0.1.113 → 0.1.115

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.
Files changed (491) hide show
  1. package/esm/0_deps.d.ts +3 -2
  2. package/esm/0_deps.js +3 -2
  3. package/esm/1_utilities.d.ts +1 -0
  4. package/esm/1_utilities.js +1 -0
  5. package/esm/3_types.d.ts +0 -1
  6. package/esm/3_types.js +0 -1
  7. package/esm/4_constants.d.ts +1 -1
  8. package/esm/4_constants.js +1 -1
  9. package/esm/client/0_utilities.d.ts +6 -0
  10. package/esm/client/0_utilities.js +53 -0
  11. package/esm/client/3_types.d.ts +60 -2
  12. package/esm/client/5_client.d.ts +44 -6
  13. package/esm/client/5_client.js +170 -42
  14. package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/encoding/base64.d.ts +2 -2
  15. package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/encoding/base64.js +2 -2
  16. package/{script/deps/deno.land/std@0.204.0 → esm/deps/deno.land/std@0.207.0}/fmt/colors.d.ts +1 -1
  17. package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/fmt/colors.js +1 -1
  18. package/esm/deps/deno.land/std@0.207.0/path/_common/assert_path.d.ts +1 -0
  19. package/esm/deps/deno.land/std@0.207.0/path/_common/assert_path.js +7 -0
  20. package/esm/deps/deno.land/std@0.207.0/path/_common/basename.d.ts +3 -0
  21. package/esm/deps/deno.land/std@0.207.0/path/_common/basename.js +40 -0
  22. package/esm/deps/deno.land/std@0.207.0/path/_common/common.d.ts +1 -0
  23. package/esm/deps/deno.land/std@0.207.0/path/_common/common.js +23 -0
  24. package/esm/deps/deno.land/std@0.207.0/path/_common/constants.d.ts +39 -0
  25. package/esm/deps/deno.land/std@0.207.0/path/_common/constants.js +46 -0
  26. package/esm/deps/deno.land/std@0.207.0/path/_common/dirname.d.ts +1 -0
  27. package/esm/deps/deno.land/std@0.207.0/path/_common/dirname.js +8 -0
  28. package/esm/deps/deno.land/std@0.207.0/path/_common/format.d.ts +3 -0
  29. package/esm/deps/deno.land/std@0.207.0/path/_common/format.js +19 -0
  30. package/esm/deps/deno.land/std@0.207.0/path/_common/from_file_url.d.ts +1 -0
  31. package/esm/deps/deno.land/std@0.207.0/path/_common/from_file_url.js +9 -0
  32. package/esm/deps/deno.land/std@0.207.0/path/_common/glob_to_reg_exp.d.ts +27 -0
  33. package/esm/deps/deno.land/std@0.207.0/path/_common/glob_to_reg_exp.js +235 -0
  34. package/esm/deps/deno.land/std@0.207.0/path/_common/normalize.d.ts +1 -0
  35. package/esm/deps/deno.land/std@0.207.0/path/_common/normalize.js +8 -0
  36. package/esm/deps/deno.land/std@0.207.0/path/_common/normalize_string.d.ts +1 -0
  37. package/esm/deps/deno.land/std@0.207.0/path/_common/normalize_string.js +77 -0
  38. package/esm/deps/deno.land/std@0.207.0/path/_common/relative.d.ts +1 -0
  39. package/esm/deps/deno.land/std@0.207.0/path/_common/relative.js +9 -0
  40. package/esm/deps/deno.land/std@0.207.0/path/_common/strip_trailing_separators.d.ts +1 -0
  41. package/esm/deps/deno.land/std@0.207.0/path/_common/strip_trailing_separators.js +19 -0
  42. package/esm/deps/deno.land/std@0.207.0/path/_common/to_file_url.d.ts +1 -0
  43. package/esm/deps/deno.land/std@0.207.0/path/_common/to_file_url.js +15 -0
  44. package/esm/deps/deno.land/std@0.207.0/path/_interface.d.ts +26 -0
  45. package/esm/deps/deno.land/std@0.207.0/path/_interface.js +3 -0
  46. package/esm/deps/deno.land/std@0.207.0/path/_os.d.ts +3 -0
  47. package/esm/deps/deno.land/std@0.207.0/path/_os.js +18 -0
  48. package/esm/deps/deno.land/std@0.207.0/path/basename.d.ts +8 -0
  49. package/esm/deps/deno.land/std@0.207.0/path/basename.js +17 -0
  50. package/esm/deps/deno.land/std@0.207.0/path/common.d.ts +13 -0
  51. package/esm/deps/deno.land/std@0.207.0/path/common.js +19 -0
  52. package/esm/deps/deno.land/std@0.207.0/path/dirname.d.ts +5 -0
  53. package/esm/deps/deno.land/std@0.207.0/path/dirname.js +12 -0
  54. package/esm/deps/deno.land/std@0.207.0/path/extname.d.ts +6 -0
  55. package/esm/deps/deno.land/std@0.207.0/path/extname.js +13 -0
  56. package/esm/deps/deno.land/std@0.207.0/path/format.d.ts +6 -0
  57. package/esm/deps/deno.land/std@0.207.0/path/format.js +12 -0
  58. package/esm/deps/deno.land/std@0.207.0/path/from_file_url.d.ts +17 -0
  59. package/esm/deps/deno.land/std@0.207.0/path/from_file_url.js +24 -0
  60. package/esm/deps/deno.land/std@0.207.0/path/glob_to_regexp.d.ts +61 -0
  61. package/esm/deps/deno.land/std@0.207.0/path/glob_to_regexp.js +65 -0
  62. package/esm/deps/deno.land/std@0.207.0/path/is_absolute.d.ts +5 -0
  63. package/esm/deps/deno.land/std@0.207.0/path/is_absolute.js +12 -0
  64. package/esm/deps/deno.land/std@0.207.0/path/is_glob.d.ts +2 -0
  65. package/esm/deps/deno.land/std@0.207.0/path/is_glob.js +28 -0
  66. package/esm/deps/deno.land/std@0.207.0/path/join.d.ts +5 -0
  67. package/esm/deps/deno.land/std@0.207.0/path/join.js +12 -0
  68. package/esm/deps/deno.land/std@0.207.0/path/join_globs.d.ts +3 -0
  69. package/esm/deps/deno.land/std@0.207.0/path/join_globs.js +11 -0
  70. package/esm/deps/deno.land/std@0.207.0/path/mod.d.ts +28 -0
  71. package/esm/deps/deno.land/std@0.207.0/path/mod.js +63 -0
  72. package/esm/deps/deno.land/std@0.207.0/path/normalize.d.ts +7 -0
  73. package/esm/deps/deno.land/std@0.207.0/path/normalize.js +14 -0
  74. package/esm/deps/deno.land/std@0.207.0/path/normalize_glob.d.ts +3 -0
  75. package/esm/deps/deno.land/std@0.207.0/path/normalize_glob.js +11 -0
  76. package/esm/deps/deno.land/std@0.207.0/path/parse.d.ts +6 -0
  77. package/esm/deps/deno.land/std@0.207.0/path/parse.js +12 -0
  78. package/esm/deps/deno.land/std@0.207.0/path/posix/_util.d.ts +1 -0
  79. package/esm/deps/deno.land/std@0.207.0/path/posix/_util.js +8 -0
  80. package/esm/deps/deno.land/std@0.207.0/path/posix/basename.d.ts +8 -0
  81. package/esm/deps/deno.land/std@0.207.0/path/posix/basename.js +18 -0
  82. package/esm/deps/deno.land/std@0.207.0/path/posix/common.d.ts +13 -0
  83. package/esm/deps/deno.land/std@0.207.0/path/posix/common.js +19 -0
  84. package/esm/deps/deno.land/std@0.207.0/path/posix/dirname.d.ts +5 -0
  85. package/esm/deps/deno.land/std@0.207.0/path/posix/dirname.js +36 -0
  86. package/esm/deps/deno.land/std@0.207.0/path/posix/extname.d.ts +6 -0
  87. package/esm/deps/deno.land/std@0.207.0/path/posix/extname.js +59 -0
  88. package/esm/deps/deno.land/std@0.207.0/path/posix/format.d.ts +6 -0
  89. package/esm/deps/deno.land/std@0.207.0/path/posix/format.js +11 -0
  90. package/esm/deps/deno.land/std@0.207.0/path/posix/from_file_url.d.ts +11 -0
  91. package/esm/deps/deno.land/std@0.207.0/path/posix/from_file_url.js +17 -0
  92. package/esm/deps/deno.land/std@0.207.0/path/posix/glob_to_regexp.d.ts +57 -0
  93. package/esm/deps/deno.land/std@0.207.0/path/posix/glob_to_regexp.js +69 -0
  94. package/esm/deps/deno.land/std@0.207.0/path/posix/is_absolute.d.ts +5 -0
  95. package/esm/deps/deno.land/std@0.207.0/path/posix/is_absolute.js +12 -0
  96. package/esm/deps/deno.land/std@0.207.0/path/posix/is_glob.d.ts +1 -0
  97. package/esm/deps/deno.land/std@0.207.0/path/posix/is_glob.js +3 -0
  98. package/esm/deps/deno.land/std@0.207.0/path/posix/join.d.ts +5 -0
  99. package/esm/deps/deno.land/std@0.207.0/path/posix/join.js +26 -0
  100. package/esm/deps/deno.land/std@0.207.0/path/posix/join_globs.d.ts +3 -0
  101. package/esm/deps/deno.land/std@0.207.0/path/posix/join_globs.js +26 -0
  102. package/esm/deps/deno.land/std@0.207.0/path/posix/mod.d.ts +40 -0
  103. package/esm/deps/deno.land/std@0.207.0/path/posix/mod.js +44 -0
  104. package/esm/deps/deno.land/std@0.207.0/path/posix/normalize.d.ts +7 -0
  105. package/esm/deps/deno.land/std@0.207.0/path/posix/normalize.js +25 -0
  106. package/esm/deps/deno.land/std@0.207.0/path/posix/normalize_glob.d.ts +3 -0
  107. package/esm/deps/deno.land/std@0.207.0/path/posix/normalize_glob.js +16 -0
  108. package/esm/deps/deno.land/std@0.207.0/path/posix/parse.d.ts +6 -0
  109. package/esm/deps/deno.land/std@0.207.0/path/posix/parse.js +98 -0
  110. package/esm/deps/deno.land/std@0.207.0/path/posix/relative.d.ts +7 -0
  111. package/esm/deps/deno.land/std@0.207.0/path/posix/relative.js +94 -0
  112. package/esm/deps/deno.land/std@0.207.0/path/posix/resolve.d.ts +5 -0
  113. package/esm/deps/deno.land/std@0.207.0/path/posix/resolve.js +48 -0
  114. package/esm/deps/deno.land/std@0.207.0/path/posix/separator.d.ts +2 -0
  115. package/esm/deps/deno.land/std@0.207.0/path/posix/separator.js +4 -0
  116. package/esm/deps/deno.land/std@0.207.0/path/posix/to_file_url.d.ts +11 -0
  117. package/esm/deps/deno.land/std@0.207.0/path/posix/to_file_url.js +22 -0
  118. package/esm/deps/deno.land/std@0.207.0/path/posix/to_namespaced_path.d.ts +5 -0
  119. package/esm/deps/deno.land/std@0.207.0/path/posix/to_namespaced_path.js +10 -0
  120. package/esm/deps/deno.land/std@0.207.0/path/relative.d.ts +12 -0
  121. package/esm/deps/deno.land/std@0.207.0/path/relative.js +19 -0
  122. package/esm/deps/deno.land/std@0.207.0/path/resolve.d.ts +5 -0
  123. package/esm/deps/deno.land/std@0.207.0/path/resolve.js +14 -0
  124. package/esm/deps/deno.land/std@0.207.0/path/separator.d.ts +2 -0
  125. package/esm/deps/deno.land/std@0.207.0/path/separator.js +5 -0
  126. package/esm/deps/deno.land/std@0.207.0/path/to_file_url.d.ts +17 -0
  127. package/esm/deps/deno.land/std@0.207.0/path/to_file_url.js +24 -0
  128. package/esm/deps/deno.land/std@0.207.0/path/to_namespaced_path.d.ts +5 -0
  129. package/esm/deps/deno.land/std@0.207.0/path/to_namespaced_path.js +14 -0
  130. package/esm/deps/deno.land/std@0.207.0/path/windows/_util.d.ts +3 -0
  131. package/esm/deps/deno.land/std@0.207.0/path/windows/_util.js +15 -0
  132. package/esm/deps/deno.land/std@0.207.0/path/windows/basename.d.ts +8 -0
  133. package/esm/deps/deno.land/std@0.207.0/path/windows/basename.js +30 -0
  134. package/esm/deps/deno.land/std@0.207.0/path/windows/common.d.ts +13 -0
  135. package/esm/deps/deno.land/std@0.207.0/path/windows/common.js +19 -0
  136. package/esm/deps/deno.land/std@0.207.0/path/windows/dirname.d.ts +5 -0
  137. package/esm/deps/deno.land/std@0.207.0/path/windows/dirname.js +98 -0
  138. package/esm/deps/deno.land/std@0.207.0/path/windows/extname.d.ts +6 -0
  139. package/esm/deps/deno.land/std@0.207.0/path/windows/extname.js +68 -0
  140. package/esm/deps/deno.land/std@0.207.0/path/windows/format.d.ts +6 -0
  141. package/esm/deps/deno.land/std@0.207.0/path/windows/format.js +11 -0
  142. package/esm/deps/deno.land/std@0.207.0/path/windows/from_file_url.d.ts +13 -0
  143. package/esm/deps/deno.land/std@0.207.0/path/windows/from_file_url.js +26 -0
  144. package/esm/deps/deno.land/std@0.207.0/path/windows/glob_to_regexp.d.ts +57 -0
  145. package/esm/deps/deno.land/std@0.207.0/path/windows/glob_to_regexp.js +69 -0
  146. package/esm/deps/deno.land/std@0.207.0/path/windows/is_absolute.d.ts +5 -0
  147. package/esm/deps/deno.land/std@0.207.0/path/windows/is_absolute.js +27 -0
  148. package/esm/deps/deno.land/std@0.207.0/path/windows/is_glob.d.ts +1 -0
  149. package/esm/deps/deno.land/std@0.207.0/path/windows/is_glob.js +3 -0
  150. package/esm/deps/deno.land/std@0.207.0/path/windows/join.d.ts +5 -0
  151. package/esm/deps/deno.land/std@0.207.0/path/windows/join.js +72 -0
  152. package/esm/deps/deno.land/std@0.207.0/path/windows/join_globs.d.ts +3 -0
  153. package/esm/deps/deno.land/std@0.207.0/path/windows/join_globs.js +26 -0
  154. package/esm/deps/deno.land/std@0.207.0/path/windows/mod.d.ts +40 -0
  155. package/esm/deps/deno.land/std@0.207.0/path/windows/mod.js +44 -0
  156. package/esm/deps/deno.land/std@0.207.0/path/windows/normalize.d.ts +7 -0
  157. package/esm/deps/deno.land/std@0.207.0/path/windows/normalize.js +130 -0
  158. package/esm/deps/deno.land/std@0.207.0/path/windows/normalize_glob.d.ts +3 -0
  159. package/esm/deps/deno.land/std@0.207.0/path/windows/normalize_glob.js +16 -0
  160. package/esm/deps/deno.land/std@0.207.0/path/windows/parse.d.ts +6 -0
  161. package/esm/deps/deno.land/std@0.207.0/path/windows/parse.js +159 -0
  162. package/esm/deps/deno.land/std@0.207.0/path/windows/relative.d.ts +12 -0
  163. package/esm/deps/deno.land/std@0.207.0/path/windows/relative.js +121 -0
  164. package/esm/deps/deno.land/std@0.207.0/path/windows/resolve.d.ts +5 -0
  165. package/esm/deps/deno.land/std@0.207.0/path/windows/resolve.js +143 -0
  166. package/esm/deps/deno.land/std@0.207.0/path/windows/separator.d.ts +2 -0
  167. package/esm/deps/deno.land/std@0.207.0/path/windows/separator.js +4 -0
  168. package/esm/deps/deno.land/std@0.207.0/path/windows/to_file_url.d.ts +13 -0
  169. package/esm/deps/deno.land/std@0.207.0/path/windows/to_file_url.js +31 -0
  170. package/esm/deps/deno.land/std@0.207.0/path/windows/to_namespaced_path.d.ts +5 -0
  171. package/esm/deps/deno.land/std@0.207.0/path/windows/to_namespaced_path.js +38 -0
  172. package/esm/mod.d.ts +1 -1
  173. package/esm/mod.js +1 -1
  174. package/esm/types/1_chat.d.ts +2 -3
  175. package/esm/types/1_chat.js +4 -5
  176. package/esm/types/1_user.d.ts +2 -3
  177. package/esm/types/1_user.js +2 -3
  178. package/esm/utilities/0_color.d.ts +3 -0
  179. package/esm/utilities/0_color.js +55 -0
  180. package/package.json +1 -1
  181. package/script/0_deps.d.ts +3 -2
  182. package/script/0_deps.js +18 -5
  183. package/script/1_utilities.d.ts +1 -0
  184. package/script/1_utilities.js +1 -0
  185. package/script/3_types.d.ts +0 -1
  186. package/script/3_types.js +0 -1
  187. package/script/4_constants.d.ts +1 -1
  188. package/script/4_constants.js +1 -1
  189. package/script/client/0_utilities.d.ts +6 -0
  190. package/script/client/0_utilities.js +79 -1
  191. package/script/client/3_types.d.ts +60 -2
  192. package/script/client/5_client.d.ts +44 -6
  193. package/script/client/5_client.js +169 -41
  194. package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/encoding/base64.d.ts +2 -2
  195. package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/encoding/base64.js +2 -2
  196. package/{esm/deps/deno.land/std@0.204.0 → script/deps/deno.land/std@0.207.0}/fmt/colors.d.ts +1 -1
  197. package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/fmt/colors.js +1 -1
  198. package/script/deps/deno.land/std@0.207.0/path/_common/assert_path.d.ts +1 -0
  199. package/script/deps/deno.land/std@0.207.0/path/_common/assert_path.js +11 -0
  200. package/script/deps/deno.land/std@0.207.0/path/_common/basename.d.ts +3 -0
  201. package/script/deps/deno.land/std@0.207.0/path/_common/basename.js +46 -0
  202. package/script/deps/deno.land/std@0.207.0/path/_common/common.d.ts +1 -0
  203. package/script/deps/deno.land/std@0.207.0/path/_common/common.js +27 -0
  204. package/script/deps/deno.land/std@0.207.0/path/_common/constants.d.ts +39 -0
  205. package/script/deps/deno.land/std@0.207.0/path/_common/constants.js +49 -0
  206. package/script/deps/deno.land/std@0.207.0/path/_common/dirname.d.ts +1 -0
  207. package/script/deps/deno.land/std@0.207.0/path/_common/dirname.js +12 -0
  208. package/script/deps/deno.land/std@0.207.0/path/_common/format.d.ts +3 -0
  209. package/script/deps/deno.land/std@0.207.0/path/_common/format.js +24 -0
  210. package/script/deps/deno.land/std@0.207.0/path/_common/from_file_url.d.ts +1 -0
  211. package/script/deps/deno.land/std@0.207.0/path/_common/from_file_url.js +13 -0
  212. package/script/deps/deno.land/std@0.207.0/path/_common/glob_to_reg_exp.d.ts +27 -0
  213. package/script/deps/deno.land/std@0.207.0/path/_common/glob_to_reg_exp.js +239 -0
  214. package/script/deps/deno.land/std@0.207.0/path/_common/normalize.d.ts +1 -0
  215. package/script/deps/deno.land/std@0.207.0/path/_common/normalize.js +12 -0
  216. package/script/deps/deno.land/std@0.207.0/path/_common/normalize_string.d.ts +1 -0
  217. package/script/deps/deno.land/std@0.207.0/path/_common/normalize_string.js +81 -0
  218. package/script/deps/deno.land/std@0.207.0/path/_common/relative.d.ts +1 -0
  219. package/script/deps/deno.land/std@0.207.0/path/_common/relative.js +13 -0
  220. package/script/deps/deno.land/std@0.207.0/path/_common/strip_trailing_separators.d.ts +1 -0
  221. package/script/deps/deno.land/std@0.207.0/path/_common/strip_trailing_separators.js +23 -0
  222. package/script/deps/deno.land/std@0.207.0/path/_common/to_file_url.d.ts +1 -0
  223. package/script/deps/deno.land/std@0.207.0/path/_common/to_file_url.js +19 -0
  224. package/script/deps/deno.land/std@0.207.0/path/_interface.d.ts +26 -0
  225. package/script/deps/deno.land/std@0.207.0/path/_interface.js +4 -0
  226. package/script/deps/deno.land/std@0.207.0/path/_os.d.ts +3 -0
  227. package/script/deps/deno.land/std@0.207.0/path/_os.js +44 -0
  228. package/script/deps/deno.land/std@0.207.0/path/basename.d.ts +8 -0
  229. package/script/deps/deno.land/std@0.207.0/path/basename.js +21 -0
  230. package/script/deps/deno.land/std@0.207.0/path/common.d.ts +13 -0
  231. package/script/deps/deno.land/std@0.207.0/path/common.js +23 -0
  232. package/script/deps/deno.land/std@0.207.0/path/dirname.d.ts +5 -0
  233. package/script/deps/deno.land/std@0.207.0/path/dirname.js +16 -0
  234. package/script/deps/deno.land/std@0.207.0/path/extname.d.ts +6 -0
  235. package/script/deps/deno.land/std@0.207.0/path/extname.js +17 -0
  236. package/script/deps/deno.land/std@0.207.0/path/format.d.ts +6 -0
  237. package/script/deps/deno.land/std@0.207.0/path/format.js +16 -0
  238. package/script/deps/deno.land/std@0.207.0/path/from_file_url.d.ts +17 -0
  239. package/script/deps/deno.land/std@0.207.0/path/from_file_url.js +28 -0
  240. package/script/deps/deno.land/std@0.207.0/path/glob_to_regexp.d.ts +61 -0
  241. package/script/deps/deno.land/std@0.207.0/path/glob_to_regexp.js +69 -0
  242. package/script/deps/deno.land/std@0.207.0/path/is_absolute.d.ts +5 -0
  243. package/script/deps/deno.land/std@0.207.0/path/is_absolute.js +16 -0
  244. package/script/deps/deno.land/std@0.207.0/path/is_glob.d.ts +2 -0
  245. package/script/deps/deno.land/std@0.207.0/path/is_glob.js +32 -0
  246. package/script/deps/deno.land/std@0.207.0/path/join.d.ts +5 -0
  247. package/script/deps/deno.land/std@0.207.0/path/join.js +16 -0
  248. package/script/deps/deno.land/std@0.207.0/path/join_globs.d.ts +3 -0
  249. package/script/deps/deno.land/std@0.207.0/path/join_globs.js +15 -0
  250. package/script/deps/deno.land/std@0.207.0/path/mod.d.ts +28 -0
  251. package/script/deps/deno.land/std@0.207.0/path/mod.js +92 -0
  252. package/script/deps/deno.land/std@0.207.0/path/normalize.d.ts +7 -0
  253. package/script/deps/deno.land/std@0.207.0/path/normalize.js +18 -0
  254. package/script/deps/deno.land/std@0.207.0/path/normalize_glob.d.ts +3 -0
  255. package/script/deps/deno.land/std@0.207.0/path/normalize_glob.js +15 -0
  256. package/script/deps/deno.land/std@0.207.0/path/parse.d.ts +6 -0
  257. package/script/deps/deno.land/std@0.207.0/path/parse.js +16 -0
  258. package/script/deps/deno.land/std@0.207.0/path/posix/_util.d.ts +1 -0
  259. package/script/deps/deno.land/std@0.207.0/path/posix/_util.js +12 -0
  260. package/script/deps/deno.land/std@0.207.0/path/posix/basename.d.ts +8 -0
  261. package/script/deps/deno.land/std@0.207.0/path/posix/basename.js +22 -0
  262. package/script/deps/deno.land/std@0.207.0/path/posix/common.d.ts +13 -0
  263. package/script/deps/deno.land/std@0.207.0/path/posix/common.js +23 -0
  264. package/script/deps/deno.land/std@0.207.0/path/posix/dirname.d.ts +5 -0
  265. package/script/deps/deno.land/std@0.207.0/path/posix/dirname.js +40 -0
  266. package/script/deps/deno.land/std@0.207.0/path/posix/extname.d.ts +6 -0
  267. package/script/deps/deno.land/std@0.207.0/path/posix/extname.js +63 -0
  268. package/script/deps/deno.land/std@0.207.0/path/posix/format.d.ts +6 -0
  269. package/script/deps/deno.land/std@0.207.0/path/posix/format.js +15 -0
  270. package/script/deps/deno.land/std@0.207.0/path/posix/from_file_url.d.ts +11 -0
  271. package/script/deps/deno.land/std@0.207.0/path/posix/from_file_url.js +21 -0
  272. package/script/deps/deno.land/std@0.207.0/path/posix/glob_to_regexp.d.ts +57 -0
  273. package/script/deps/deno.land/std@0.207.0/path/posix/glob_to_regexp.js +73 -0
  274. package/script/deps/deno.land/std@0.207.0/path/posix/is_absolute.d.ts +5 -0
  275. package/script/deps/deno.land/std@0.207.0/path/posix/is_absolute.js +16 -0
  276. package/script/deps/deno.land/std@0.207.0/path/posix/is_glob.d.ts +1 -0
  277. package/script/deps/deno.land/std@0.207.0/path/posix/is_glob.js +7 -0
  278. package/script/deps/deno.land/std@0.207.0/path/posix/join.d.ts +5 -0
  279. package/script/deps/deno.land/std@0.207.0/path/posix/join.js +30 -0
  280. package/script/deps/deno.land/std@0.207.0/path/posix/join_globs.d.ts +3 -0
  281. package/script/deps/deno.land/std@0.207.0/path/posix/join_globs.js +30 -0
  282. package/script/deps/deno.land/std@0.207.0/path/posix/mod.d.ts +40 -0
  283. package/script/deps/deno.land/std@0.207.0/path/posix/mod.js +61 -0
  284. package/script/deps/deno.land/std@0.207.0/path/posix/normalize.d.ts +7 -0
  285. package/script/deps/deno.land/std@0.207.0/path/posix/normalize.js +29 -0
  286. package/script/deps/deno.land/std@0.207.0/path/posix/normalize_glob.d.ts +3 -0
  287. package/script/deps/deno.land/std@0.207.0/path/posix/normalize_glob.js +20 -0
  288. package/script/deps/deno.land/std@0.207.0/path/posix/parse.d.ts +6 -0
  289. package/script/deps/deno.land/std@0.207.0/path/posix/parse.js +102 -0
  290. package/script/deps/deno.land/std@0.207.0/path/posix/relative.d.ts +7 -0
  291. package/script/deps/deno.land/std@0.207.0/path/posix/relative.js +98 -0
  292. package/script/deps/deno.land/std@0.207.0/path/posix/resolve.d.ts +5 -0
  293. package/script/deps/deno.land/std@0.207.0/path/posix/resolve.js +75 -0
  294. package/script/deps/deno.land/std@0.207.0/path/posix/separator.d.ts +2 -0
  295. package/script/deps/deno.land/std@0.207.0/path/posix/separator.js +7 -0
  296. package/script/deps/deno.land/std@0.207.0/path/posix/to_file_url.d.ts +11 -0
  297. package/script/deps/deno.land/std@0.207.0/path/posix/to_file_url.js +26 -0
  298. package/script/deps/deno.land/std@0.207.0/path/posix/to_namespaced_path.d.ts +5 -0
  299. package/script/deps/deno.land/std@0.207.0/path/posix/to_namespaced_path.js +14 -0
  300. package/script/deps/deno.land/std@0.207.0/path/relative.d.ts +12 -0
  301. package/script/deps/deno.land/std@0.207.0/path/relative.js +23 -0
  302. package/script/deps/deno.land/std@0.207.0/path/resolve.d.ts +5 -0
  303. package/script/deps/deno.land/std@0.207.0/path/resolve.js +18 -0
  304. package/script/deps/deno.land/std@0.207.0/path/separator.d.ts +2 -0
  305. package/script/deps/deno.land/std@0.207.0/path/separator.js +8 -0
  306. package/script/deps/deno.land/std@0.207.0/path/to_file_url.d.ts +17 -0
  307. package/script/deps/deno.land/std@0.207.0/path/to_file_url.js +28 -0
  308. package/script/deps/deno.land/std@0.207.0/path/to_namespaced_path.d.ts +5 -0
  309. package/script/deps/deno.land/std@0.207.0/path/to_namespaced_path.js +18 -0
  310. package/script/deps/deno.land/std@0.207.0/path/windows/_util.d.ts +3 -0
  311. package/script/deps/deno.land/std@0.207.0/path/windows/_util.js +21 -0
  312. package/script/deps/deno.land/std@0.207.0/path/windows/basename.d.ts +8 -0
  313. package/script/deps/deno.land/std@0.207.0/path/windows/basename.js +34 -0
  314. package/script/deps/deno.land/std@0.207.0/path/windows/common.d.ts +13 -0
  315. package/script/deps/deno.land/std@0.207.0/path/windows/common.js +23 -0
  316. package/script/deps/deno.land/std@0.207.0/path/windows/dirname.d.ts +5 -0
  317. package/script/deps/deno.land/std@0.207.0/path/windows/dirname.js +102 -0
  318. package/script/deps/deno.land/std@0.207.0/path/windows/extname.d.ts +6 -0
  319. package/script/deps/deno.land/std@0.207.0/path/windows/extname.js +72 -0
  320. package/script/deps/deno.land/std@0.207.0/path/windows/format.d.ts +6 -0
  321. package/script/deps/deno.land/std@0.207.0/path/windows/format.js +15 -0
  322. package/script/deps/deno.land/std@0.207.0/path/windows/from_file_url.d.ts +13 -0
  323. package/script/deps/deno.land/std@0.207.0/path/windows/from_file_url.js +30 -0
  324. package/script/deps/deno.land/std@0.207.0/path/windows/glob_to_regexp.d.ts +57 -0
  325. package/script/deps/deno.land/std@0.207.0/path/windows/glob_to_regexp.js +73 -0
  326. package/script/deps/deno.land/std@0.207.0/path/windows/is_absolute.d.ts +5 -0
  327. package/script/deps/deno.land/std@0.207.0/path/windows/is_absolute.js +31 -0
  328. package/script/deps/deno.land/std@0.207.0/path/windows/is_glob.d.ts +1 -0
  329. package/script/deps/deno.land/std@0.207.0/path/windows/is_glob.js +7 -0
  330. package/script/deps/deno.land/std@0.207.0/path/windows/join.d.ts +5 -0
  331. package/script/deps/deno.land/std@0.207.0/path/windows/join.js +76 -0
  332. package/script/deps/deno.land/std@0.207.0/path/windows/join_globs.d.ts +3 -0
  333. package/script/deps/deno.land/std@0.207.0/path/windows/join_globs.js +30 -0
  334. package/script/deps/deno.land/std@0.207.0/path/windows/mod.d.ts +40 -0
  335. package/script/deps/deno.land/std@0.207.0/path/windows/mod.js +61 -0
  336. package/script/deps/deno.land/std@0.207.0/path/windows/normalize.d.ts +7 -0
  337. package/script/deps/deno.land/std@0.207.0/path/windows/normalize.js +134 -0
  338. package/script/deps/deno.land/std@0.207.0/path/windows/normalize_glob.d.ts +3 -0
  339. package/script/deps/deno.land/std@0.207.0/path/windows/normalize_glob.js +20 -0
  340. package/script/deps/deno.land/std@0.207.0/path/windows/parse.d.ts +6 -0
  341. package/script/deps/deno.land/std@0.207.0/path/windows/parse.js +163 -0
  342. package/script/deps/deno.land/std@0.207.0/path/windows/relative.d.ts +12 -0
  343. package/script/deps/deno.land/std@0.207.0/path/windows/relative.js +125 -0
  344. package/script/deps/deno.land/std@0.207.0/path/windows/resolve.d.ts +5 -0
  345. package/script/deps/deno.land/std@0.207.0/path/windows/resolve.js +170 -0
  346. package/script/deps/deno.land/std@0.207.0/path/windows/separator.d.ts +2 -0
  347. package/script/deps/deno.land/std@0.207.0/path/windows/separator.js +7 -0
  348. package/script/deps/deno.land/std@0.207.0/path/windows/to_file_url.d.ts +13 -0
  349. package/script/deps/deno.land/std@0.207.0/path/windows/to_file_url.js +35 -0
  350. package/script/deps/deno.land/std@0.207.0/path/windows/to_namespaced_path.d.ts +5 -0
  351. package/script/deps/deno.land/std@0.207.0/path/windows/to_namespaced_path.js +42 -0
  352. package/script/mod.d.ts +1 -1
  353. package/script/mod.js +3 -1
  354. package/script/types/1_chat.d.ts +2 -3
  355. package/script/types/1_chat.js +4 -5
  356. package/script/types/1_user.d.ts +2 -3
  357. package/script/types/1_user.js +1 -2
  358. package/script/utilities/0_color.d.ts +3 -0
  359. package/script/utilities/0_color.js +60 -0
  360. package/esm/types/0_color.d.ts +0 -3
  361. package/esm/types/0_color.js +0 -36
  362. package/script/types/0_color.d.ts +0 -3
  363. package/script/types/0_color.js +0 -41
  364. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_constants.d.ts +0 -0
  365. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_constants.js +0 -0
  366. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_diff.d.ts +0 -0
  367. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_diff.js +0 -0
  368. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_format.d.ts +0 -0
  369. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_format.js +0 -0
  370. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert.d.ts +0 -0
  371. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert.js +0 -0
  372. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_almost_equals.d.ts +0 -0
  373. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_almost_equals.js +0 -0
  374. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_array_includes.d.ts +0 -0
  375. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_array_includes.js +0 -0
  376. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_equals.d.ts +0 -0
  377. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_equals.js +0 -0
  378. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_exists.d.ts +0 -0
  379. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_exists.js +0 -0
  380. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_false.d.ts +0 -0
  381. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_false.js +0 -0
  382. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_greater.d.ts +0 -0
  383. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_greater.js +0 -0
  384. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_greater_or_equal.d.ts +0 -0
  385. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_greater_or_equal.js +0 -0
  386. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_instance_of.d.ts +0 -0
  387. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_instance_of.js +0 -0
  388. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_is_error.d.ts +0 -0
  389. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_is_error.js +0 -0
  390. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_less.d.ts +0 -0
  391. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_less.js +0 -0
  392. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_less_or_equal.d.ts +0 -0
  393. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_less_or_equal.js +0 -0
  394. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_match.d.ts +0 -0
  395. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_match.js +0 -0
  396. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_equals.d.ts +0 -0
  397. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_equals.js +0 -0
  398. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_instance_of.d.ts +0 -0
  399. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_instance_of.js +0 -0
  400. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_match.d.ts +0 -0
  401. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_match.js +0 -0
  402. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_strict_equals.d.ts +0 -0
  403. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_strict_equals.js +0 -0
  404. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_object_match.d.ts +0 -0
  405. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_object_match.js +0 -0
  406. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_rejects.d.ts +0 -0
  407. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_rejects.js +0 -0
  408. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_strict_equals.d.ts +0 -0
  409. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_strict_equals.js +0 -0
  410. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_string_includes.d.ts +0 -0
  411. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_string_includes.js +0 -0
  412. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_throws.d.ts +0 -0
  413. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_throws.js +0 -0
  414. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assertion_error.d.ts +0 -0
  415. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assertion_error.js +0 -0
  416. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/equal.d.ts +0 -0
  417. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/equal.js +0 -0
  418. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/fail.d.ts +0 -0
  419. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/fail.js +0 -0
  420. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/mod.d.ts +0 -0
  421. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/mod.js +0 -0
  422. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/unimplemented.d.ts +0 -0
  423. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/unimplemented.js +0 -0
  424. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/unreachable.d.ts +0 -0
  425. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/unreachable.js +0 -0
  426. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/encoding/_util.d.ts +0 -0
  427. /package/esm/deps/deno.land/{std@0.204.0 → std@0.207.0}/encoding/_util.js +0 -0
  428. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_constants.d.ts +0 -0
  429. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_constants.js +0 -0
  430. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_diff.d.ts +0 -0
  431. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_diff.js +0 -0
  432. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_format.d.ts +0 -0
  433. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/_format.js +0 -0
  434. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert.d.ts +0 -0
  435. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert.js +0 -0
  436. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_almost_equals.d.ts +0 -0
  437. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_almost_equals.js +0 -0
  438. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_array_includes.d.ts +0 -0
  439. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_array_includes.js +0 -0
  440. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_equals.d.ts +0 -0
  441. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_equals.js +0 -0
  442. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_exists.d.ts +0 -0
  443. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_exists.js +0 -0
  444. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_false.d.ts +0 -0
  445. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_false.js +0 -0
  446. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_greater.d.ts +0 -0
  447. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_greater.js +0 -0
  448. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_greater_or_equal.d.ts +0 -0
  449. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_greater_or_equal.js +0 -0
  450. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_instance_of.d.ts +0 -0
  451. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_instance_of.js +0 -0
  452. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_is_error.d.ts +0 -0
  453. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_is_error.js +0 -0
  454. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_less.d.ts +0 -0
  455. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_less.js +0 -0
  456. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_less_or_equal.d.ts +0 -0
  457. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_less_or_equal.js +0 -0
  458. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_match.d.ts +0 -0
  459. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_match.js +0 -0
  460. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_equals.d.ts +0 -0
  461. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_equals.js +0 -0
  462. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_instance_of.d.ts +0 -0
  463. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_instance_of.js +0 -0
  464. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_match.d.ts +0 -0
  465. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_match.js +0 -0
  466. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_strict_equals.d.ts +0 -0
  467. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_not_strict_equals.js +0 -0
  468. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_object_match.d.ts +0 -0
  469. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_object_match.js +0 -0
  470. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_rejects.d.ts +0 -0
  471. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_rejects.js +0 -0
  472. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_strict_equals.d.ts +0 -0
  473. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_strict_equals.js +0 -0
  474. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_string_includes.d.ts +0 -0
  475. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_string_includes.js +0 -0
  476. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_throws.d.ts +0 -0
  477. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assert_throws.js +0 -0
  478. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assertion_error.d.ts +0 -0
  479. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/assertion_error.js +0 -0
  480. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/equal.d.ts +0 -0
  481. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/equal.js +0 -0
  482. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/fail.d.ts +0 -0
  483. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/fail.js +0 -0
  484. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/mod.d.ts +0 -0
  485. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/mod.js +0 -0
  486. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/unimplemented.d.ts +0 -0
  487. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/unimplemented.js +0 -0
  488. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/unreachable.d.ts +0 -0
  489. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/assert/unreachable.js +0 -0
  490. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/encoding/_util.d.ts +0 -0
  491. /package/script/deps/deno.land/{std@0.204.0 → std@0.207.0}/encoding/_util.js +0 -0
@@ -1,41 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getColorFromColorId = exports.getColorFromPeerId = void 0;
4
- const colors = [
5
- "red",
6
- "orange",
7
- "violet",
8
- "green",
9
- "cyan",
10
- "blue",
11
- "pink",
12
- ];
13
- function getColorFromPeerId(id) {
14
- id = Number(String(id).replaceAll("-100", "-"));
15
- if (id < 0) {
16
- id = -id;
17
- }
18
- return colors[id % 7];
19
- }
20
- exports.getColorFromPeerId = getColorFromPeerId;
21
- function getColorFromColorId(id) {
22
- switch (id) {
23
- case 0:
24
- return "red";
25
- case 1:
26
- return "orange";
27
- case 2:
28
- return "violet";
29
- case 3:
30
- return "green";
31
- case 4:
32
- return "cyan";
33
- case 5:
34
- return "blue";
35
- case 6:
36
- return "pink";
37
- default:
38
- return "blue";
39
- }
40
- }
41
- exports.getColorFromColorId = getColorFromColorId;