@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
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.isGlob = void 0;
6
+ var is_glob_js_1 = require("../is_glob.js");
7
+ Object.defineProperty(exports, "isGlob", { enumerable: true, get: function () { return is_glob_js_1.isGlob; } });
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Join all given a sequence of `paths`,then normalizes the resulting path.
3
+ * @param paths to be joined and normalized
4
+ */
5
+ export declare function join(...paths: string[]): string;
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.join = void 0;
6
+ const assert_js_1 = require("../../assert/assert.js");
7
+ const assert_path_js_1 = require("../_common/assert_path.js");
8
+ const _util_js_1 = require("./_util.js");
9
+ const normalize_js_1 = require("./normalize.js");
10
+ /**
11
+ * Join all given a sequence of `paths`,then normalizes the resulting path.
12
+ * @param paths to be joined and normalized
13
+ */
14
+ function join(...paths) {
15
+ if (paths.length === 0)
16
+ return ".";
17
+ let joined;
18
+ let firstPart = null;
19
+ for (let i = 0; i < paths.length; ++i) {
20
+ const path = paths[i];
21
+ (0, assert_path_js_1.assertPath)(path);
22
+ if (path.length > 0) {
23
+ if (joined === undefined)
24
+ joined = firstPart = path;
25
+ else
26
+ joined += `\\${path}`;
27
+ }
28
+ }
29
+ if (joined === undefined)
30
+ return ".";
31
+ // Make sure that the joined path doesn't start with two slashes, because
32
+ // normalize() will mistake it for an UNC path then.
33
+ //
34
+ // This step is skipped when it is very clear that the user actually
35
+ // intended to point at an UNC path. This is assumed when the first
36
+ // non-empty string arguments starts with exactly two slashes followed by
37
+ // at least one more non-slash character.
38
+ //
39
+ // Note that for normalize() to treat a path as an UNC path it needs to
40
+ // have at least 2 components, so we don't filter for that here.
41
+ // This means that the user can use join to construct UNC paths from
42
+ // a server name and a share name; for example:
43
+ // path.join('//server', 'share') -> '\\\\server\\share\\')
44
+ let needsReplace = true;
45
+ let slashCount = 0;
46
+ (0, assert_js_1.assert)(firstPart !== null);
47
+ if ((0, _util_js_1.isPathSeparator)(firstPart.charCodeAt(0))) {
48
+ ++slashCount;
49
+ const firstLen = firstPart.length;
50
+ if (firstLen > 1) {
51
+ if ((0, _util_js_1.isPathSeparator)(firstPart.charCodeAt(1))) {
52
+ ++slashCount;
53
+ if (firstLen > 2) {
54
+ if ((0, _util_js_1.isPathSeparator)(firstPart.charCodeAt(2)))
55
+ ++slashCount;
56
+ else {
57
+ // We matched a UNC path in the first part
58
+ needsReplace = false;
59
+ }
60
+ }
61
+ }
62
+ }
63
+ }
64
+ if (needsReplace) {
65
+ // Find any more consecutive slashes we need to replace
66
+ for (; slashCount < joined.length; ++slashCount) {
67
+ if (!(0, _util_js_1.isPathSeparator)(joined.charCodeAt(slashCount)))
68
+ break;
69
+ }
70
+ // Replace the slashes if needed
71
+ if (slashCount >= 2)
72
+ joined = `\\${joined.slice(slashCount)}`;
73
+ }
74
+ return (0, normalize_js_1.normalize)(joined);
75
+ }
76
+ exports.join = join;
@@ -0,0 +1,3 @@
1
+ import { GlobOptions } from "../_common/glob_to_reg_exp.js";
2
+ /** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
3
+ export declare function joinGlobs(globs: string[], { extended, globstar }?: GlobOptions): string;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.joinGlobs = void 0;
6
+ const join_js_1 = require("./join.js");
7
+ const separator_js_1 = require("./separator.js");
8
+ const normalize_glob_js_1 = require("./normalize_glob.js");
9
+ /** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
10
+ function joinGlobs(globs, { extended = true, globstar = false } = {}) {
11
+ if (!globstar || globs.length === 0) {
12
+ return (0, join_js_1.join)(...globs);
13
+ }
14
+ if (globs.length === 0)
15
+ return ".";
16
+ let joined;
17
+ for (const glob of globs) {
18
+ const path = glob;
19
+ if (path.length > 0) {
20
+ if (!joined)
21
+ joined = path;
22
+ else
23
+ joined += `${separator_js_1.SEP}${path}`;
24
+ }
25
+ }
26
+ if (!joined)
27
+ return ".";
28
+ return (0, normalize_glob_js_1.normalizeGlob)(joined, { extended, globstar });
29
+ }
30
+ exports.joinGlobs = joinGlobs;
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Utilities for working with OS-specific file paths.
3
+ *
4
+ * Codes in the examples uses POSIX path but it automatically use Windows path
5
+ * on Windows. Use methods under `posix` or `win32` object instead to handle non
6
+ * platform specific path like:
7
+ * ```ts
8
+ * import { posix, win32 } from "https://deno.land/std@$STD_VERSION/path/mod.ts";
9
+ * const p1 = posix.fromFileUrl("file:///home/foo");
10
+ * const p2 = win32.fromFileUrl("file:///home/foo");
11
+ * console.log(p1); // "/home/foo"
12
+ * console.log(p2); // "\\home\\foo"
13
+ * ```
14
+ *
15
+ * This module is browser compatible.
16
+ *
17
+ * @module
18
+ */
19
+ export declare const sep = "\\";
20
+ export declare const delimiter = ";";
21
+ export * from "./basename.js";
22
+ export * from "./dirname.js";
23
+ export * from "./extname.js";
24
+ export * from "./format.js";
25
+ export * from "./from_file_url.js";
26
+ export * from "./is_absolute.js";
27
+ export * from "./join.js";
28
+ export * from "./normalize.js";
29
+ export * from "./parse.js";
30
+ export * from "./relative.js";
31
+ export * from "./resolve.js";
32
+ export * from "./to_file_url.js";
33
+ export * from "./to_namespaced_path.js";
34
+ export * from "./common.js";
35
+ export * from "./separator.js";
36
+ export * from "../_interface.js";
37
+ export * from "./glob_to_regexp.js";
38
+ export * from "./is_glob.js";
39
+ export * from "./join_globs.js";
40
+ export * from "./normalize_glob.js";
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // Copyright the Browserify authors. MIT License.
4
+ // Ported mostly from https://github.com/browserify/path-browserify/
5
+ // This module is browser compatible.
6
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
+ if (k2 === undefined) k2 = k;
8
+ var desc = Object.getOwnPropertyDescriptor(m, k);
9
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
10
+ desc = { enumerable: true, get: function() { return m[k]; } };
11
+ }
12
+ Object.defineProperty(o, k2, desc);
13
+ }) : (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ o[k2] = m[k];
16
+ }));
17
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
18
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
19
+ };
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ exports.delimiter = exports.sep = void 0;
22
+ /**
23
+ * Utilities for working with OS-specific file paths.
24
+ *
25
+ * Codes in the examples uses POSIX path but it automatically use Windows path
26
+ * on Windows. Use methods under `posix` or `win32` object instead to handle non
27
+ * platform specific path like:
28
+ * ```ts
29
+ * import { posix, win32 } from "https://deno.land/std@$STD_VERSION/path/mod.ts";
30
+ * const p1 = posix.fromFileUrl("file:///home/foo");
31
+ * const p2 = win32.fromFileUrl("file:///home/foo");
32
+ * console.log(p1); // "/home/foo"
33
+ * console.log(p2); // "\\home\\foo"
34
+ * ```
35
+ *
36
+ * This module is browser compatible.
37
+ *
38
+ * @module
39
+ */
40
+ exports.sep = "\\";
41
+ exports.delimiter = ";";
42
+ __exportStar(require("./basename.js"), exports);
43
+ __exportStar(require("./dirname.js"), exports);
44
+ __exportStar(require("./extname.js"), exports);
45
+ __exportStar(require("./format.js"), exports);
46
+ __exportStar(require("./from_file_url.js"), exports);
47
+ __exportStar(require("./is_absolute.js"), exports);
48
+ __exportStar(require("./join.js"), exports);
49
+ __exportStar(require("./normalize.js"), exports);
50
+ __exportStar(require("./parse.js"), exports);
51
+ __exportStar(require("./relative.js"), exports);
52
+ __exportStar(require("./resolve.js"), exports);
53
+ __exportStar(require("./to_file_url.js"), exports);
54
+ __exportStar(require("./to_namespaced_path.js"), exports);
55
+ __exportStar(require("./common.js"), exports);
56
+ __exportStar(require("./separator.js"), exports);
57
+ __exportStar(require("../_interface.js"), exports);
58
+ __exportStar(require("./glob_to_regexp.js"), exports);
59
+ __exportStar(require("./is_glob.js"), exports);
60
+ __exportStar(require("./join_globs.js"), exports);
61
+ __exportStar(require("./normalize_glob.js"), exports);
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Normalize the `path`, resolving `'..'` and `'.'` segments.
3
+ * Note that resolving these segments does not necessarily mean that all will be eliminated.
4
+ * A `'..'` at the top-level will be preserved, and an empty path is canonically `'.'`.
5
+ * @param path to be normalized
6
+ */
7
+ export declare function normalize(path: string): string;
@@ -0,0 +1,134 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.normalize = void 0;
6
+ const normalize_js_1 = require("../_common/normalize.js");
7
+ const constants_js_1 = require("../_common/constants.js");
8
+ const normalize_string_js_1 = require("../_common/normalize_string.js");
9
+ const _util_js_1 = require("./_util.js");
10
+ /**
11
+ * Normalize the `path`, resolving `'..'` and `'.'` segments.
12
+ * Note that resolving these segments does not necessarily mean that all will be eliminated.
13
+ * A `'..'` at the top-level will be preserved, and an empty path is canonically `'.'`.
14
+ * @param path to be normalized
15
+ */
16
+ function normalize(path) {
17
+ (0, normalize_js_1.assertArg)(path);
18
+ const len = path.length;
19
+ let rootEnd = 0;
20
+ let device;
21
+ let isAbsolute = false;
22
+ const code = path.charCodeAt(0);
23
+ // Try to match a root
24
+ if (len > 1) {
25
+ if ((0, _util_js_1.isPathSeparator)(code)) {
26
+ // Possible UNC root
27
+ // If we started with a separator, we know we at least have an absolute
28
+ // path of some kind (UNC or otherwise)
29
+ isAbsolute = true;
30
+ if ((0, _util_js_1.isPathSeparator)(path.charCodeAt(1))) {
31
+ // Matched double path separator at beginning
32
+ let j = 2;
33
+ let last = j;
34
+ // Match 1 or more non-path separators
35
+ for (; j < len; ++j) {
36
+ if ((0, _util_js_1.isPathSeparator)(path.charCodeAt(j)))
37
+ break;
38
+ }
39
+ if (j < len && j !== last) {
40
+ const firstPart = path.slice(last, j);
41
+ // Matched!
42
+ last = j;
43
+ // Match 1 or more path separators
44
+ for (; j < len; ++j) {
45
+ if (!(0, _util_js_1.isPathSeparator)(path.charCodeAt(j)))
46
+ break;
47
+ }
48
+ if (j < len && j !== last) {
49
+ // Matched!
50
+ last = j;
51
+ // Match 1 or more non-path separators
52
+ for (; j < len; ++j) {
53
+ if ((0, _util_js_1.isPathSeparator)(path.charCodeAt(j)))
54
+ break;
55
+ }
56
+ if (j === len) {
57
+ // We matched a UNC root only
58
+ // Return the normalized version of the UNC root since there
59
+ // is nothing left to process
60
+ return `\\\\${firstPart}\\${path.slice(last)}\\`;
61
+ }
62
+ else if (j !== last) {
63
+ // We matched a UNC root with leftovers
64
+ device = `\\\\${firstPart}\\${path.slice(last, j)}`;
65
+ rootEnd = j;
66
+ }
67
+ }
68
+ }
69
+ }
70
+ else {
71
+ rootEnd = 1;
72
+ }
73
+ }
74
+ else if ((0, _util_js_1.isWindowsDeviceRoot)(code)) {
75
+ // Possible device root
76
+ if (path.charCodeAt(1) === constants_js_1.CHAR_COLON) {
77
+ device = path.slice(0, 2);
78
+ rootEnd = 2;
79
+ if (len > 2) {
80
+ if ((0, _util_js_1.isPathSeparator)(path.charCodeAt(2))) {
81
+ // Treat separator following drive name as an absolute path
82
+ // indicator
83
+ isAbsolute = true;
84
+ rootEnd = 3;
85
+ }
86
+ }
87
+ }
88
+ }
89
+ }
90
+ else if ((0, _util_js_1.isPathSeparator)(code)) {
91
+ // `path` contains just a path separator, exit early to avoid unnecessary
92
+ // work
93
+ return "\\";
94
+ }
95
+ let tail;
96
+ if (rootEnd < len) {
97
+ tail = (0, normalize_string_js_1.normalizeString)(path.slice(rootEnd), !isAbsolute, "\\", _util_js_1.isPathSeparator);
98
+ }
99
+ else {
100
+ tail = "";
101
+ }
102
+ if (tail.length === 0 && !isAbsolute)
103
+ tail = ".";
104
+ if (tail.length > 0 && (0, _util_js_1.isPathSeparator)(path.charCodeAt(len - 1))) {
105
+ tail += "\\";
106
+ }
107
+ if (device === undefined) {
108
+ if (isAbsolute) {
109
+ if (tail.length > 0)
110
+ return `\\${tail}`;
111
+ else
112
+ return "\\";
113
+ }
114
+ else if (tail.length > 0) {
115
+ return tail;
116
+ }
117
+ else {
118
+ return "";
119
+ }
120
+ }
121
+ else if (isAbsolute) {
122
+ if (tail.length > 0)
123
+ return `${device}\\${tail}`;
124
+ else
125
+ return `${device}\\`;
126
+ }
127
+ else if (tail.length > 0) {
128
+ return device + tail;
129
+ }
130
+ else {
131
+ return device;
132
+ }
133
+ }
134
+ exports.normalize = normalize;
@@ -0,0 +1,3 @@
1
+ import { GlobOptions } from "../_common/glob_to_reg_exp.js";
2
+ /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
3
+ export declare function normalizeGlob(glob: string, { globstar }?: GlobOptions): string;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.normalizeGlob = void 0;
6
+ const normalize_js_1 = require("./normalize.js");
7
+ const separator_js_1 = require("./separator.js");
8
+ /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
9
+ function normalizeGlob(glob, { globstar = false } = {}) {
10
+ if (glob.match(/\0/g)) {
11
+ throw new Error(`Glob contains invalid characters: "${glob}"`);
12
+ }
13
+ if (!globstar) {
14
+ return (0, normalize_js_1.normalize)(glob);
15
+ }
16
+ const s = separator_js_1.SEP_PATTERN.source;
17
+ const badParentPattern = new RegExp(`(?<=(${s}|^)\\*\\*${s})\\.\\.(?=${s}|$)`, "g");
18
+ return (0, normalize_js_1.normalize)(glob.replace(badParentPattern, "\0")).replace(/\0/g, "..");
19
+ }
20
+ exports.normalizeGlob = normalizeGlob;
@@ -0,0 +1,6 @@
1
+ import { ParsedPath } from "../_interface.js";
2
+ /**
3
+ * Return a `ParsedPath` object of the `path`.
4
+ * @param path to process
5
+ */
6
+ export declare function parse(path: string): ParsedPath;
@@ -0,0 +1,163 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.parse = void 0;
6
+ const constants_js_1 = require("../_common/constants.js");
7
+ const assert_path_js_1 = require("../_common/assert_path.js");
8
+ const _util_js_1 = require("./_util.js");
9
+ /**
10
+ * Return a `ParsedPath` object of the `path`.
11
+ * @param path to process
12
+ */
13
+ function parse(path) {
14
+ (0, assert_path_js_1.assertPath)(path);
15
+ const ret = { root: "", dir: "", base: "", ext: "", name: "" };
16
+ const len = path.length;
17
+ if (len === 0)
18
+ return ret;
19
+ let rootEnd = 0;
20
+ let code = path.charCodeAt(0);
21
+ // Try to match a root
22
+ if (len > 1) {
23
+ if ((0, _util_js_1.isPathSeparator)(code)) {
24
+ // Possible UNC root
25
+ rootEnd = 1;
26
+ if ((0, _util_js_1.isPathSeparator)(path.charCodeAt(1))) {
27
+ // Matched double path separator at beginning
28
+ let j = 2;
29
+ let last = j;
30
+ // Match 1 or more non-path separators
31
+ for (; j < len; ++j) {
32
+ if ((0, _util_js_1.isPathSeparator)(path.charCodeAt(j)))
33
+ break;
34
+ }
35
+ if (j < len && j !== last) {
36
+ // Matched!
37
+ last = j;
38
+ // Match 1 or more path separators
39
+ for (; j < len; ++j) {
40
+ if (!(0, _util_js_1.isPathSeparator)(path.charCodeAt(j)))
41
+ break;
42
+ }
43
+ if (j < len && j !== last) {
44
+ // Matched!
45
+ last = j;
46
+ // Match 1 or more non-path separators
47
+ for (; j < len; ++j) {
48
+ if ((0, _util_js_1.isPathSeparator)(path.charCodeAt(j)))
49
+ break;
50
+ }
51
+ if (j === len) {
52
+ // We matched a UNC root only
53
+ rootEnd = j;
54
+ }
55
+ else if (j !== last) {
56
+ // We matched a UNC root with leftovers
57
+ rootEnd = j + 1;
58
+ }
59
+ }
60
+ }
61
+ }
62
+ }
63
+ else if ((0, _util_js_1.isWindowsDeviceRoot)(code)) {
64
+ // Possible device root
65
+ if (path.charCodeAt(1) === constants_js_1.CHAR_COLON) {
66
+ rootEnd = 2;
67
+ if (len > 2) {
68
+ if ((0, _util_js_1.isPathSeparator)(path.charCodeAt(2))) {
69
+ if (len === 3) {
70
+ // `path` contains just a drive root, exit early to avoid
71
+ // unnecessary work
72
+ ret.root = ret.dir = path;
73
+ ret.base = "\\";
74
+ return ret;
75
+ }
76
+ rootEnd = 3;
77
+ }
78
+ }
79
+ else {
80
+ // `path` contains just a relative drive root, exit early to avoid
81
+ // unnecessary work
82
+ ret.root = ret.dir = path;
83
+ return ret;
84
+ }
85
+ }
86
+ }
87
+ }
88
+ else if ((0, _util_js_1.isPathSeparator)(code)) {
89
+ // `path` contains just a path separator, exit early to avoid
90
+ // unnecessary work
91
+ ret.root = ret.dir = path;
92
+ ret.base = "\\";
93
+ return ret;
94
+ }
95
+ if (rootEnd > 0)
96
+ ret.root = path.slice(0, rootEnd);
97
+ let startDot = -1;
98
+ let startPart = rootEnd;
99
+ let end = -1;
100
+ let matchedSlash = true;
101
+ let i = path.length - 1;
102
+ // Track the state of characters (if any) we see before our first dot and
103
+ // after any path separator we find
104
+ let preDotState = 0;
105
+ // Get non-dir info
106
+ for (; i >= rootEnd; --i) {
107
+ code = path.charCodeAt(i);
108
+ if ((0, _util_js_1.isPathSeparator)(code)) {
109
+ // If we reached a path separator that was not part of a set of path
110
+ // separators at the end of the string, stop now
111
+ if (!matchedSlash) {
112
+ startPart = i + 1;
113
+ break;
114
+ }
115
+ continue;
116
+ }
117
+ if (end === -1) {
118
+ // We saw the first non-path separator, mark this as the end of our
119
+ // extension
120
+ matchedSlash = false;
121
+ end = i + 1;
122
+ }
123
+ if (code === constants_js_1.CHAR_DOT) {
124
+ // If this is our first dot, mark it as the start of our extension
125
+ if (startDot === -1)
126
+ startDot = i;
127
+ else if (preDotState !== 1)
128
+ preDotState = 1;
129
+ }
130
+ else if (startDot !== -1) {
131
+ // We saw a non-dot and non-path separator before our dot, so we should
132
+ // have a good chance at having a non-empty extension
133
+ preDotState = -1;
134
+ }
135
+ }
136
+ if (startDot === -1 ||
137
+ end === -1 ||
138
+ // We saw a non-dot character immediately before the dot
139
+ preDotState === 0 ||
140
+ // The (right-most) trimmed path component is exactly '..'
141
+ (preDotState === 1 && startDot === end - 1 && startDot === startPart + 1)) {
142
+ if (end !== -1) {
143
+ ret.base = ret.name = path.slice(startPart, end);
144
+ }
145
+ }
146
+ else {
147
+ ret.name = path.slice(startPart, startDot);
148
+ ret.base = path.slice(startPart, end);
149
+ ret.ext = path.slice(startDot, end);
150
+ }
151
+ // Fallback to '\' in case there is no basename
152
+ ret.base = ret.base || "\\";
153
+ // If the directory is the root, use the entire root as the `dir` including
154
+ // the trailing slash if any (`C:\abc` -> `C:\`). Otherwise, strip out the
155
+ // trailing slash (`C:\abc\def` -> `C:\abc`).
156
+ if (startPart > 0 && startPart !== rootEnd) {
157
+ ret.dir = path.slice(0, startPart - 1);
158
+ }
159
+ else
160
+ ret.dir = ret.root;
161
+ return ret;
162
+ }
163
+ exports.parse = parse;
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Return the relative path from `from` to `to` based on current working directory.
3
+ *
4
+ * An example in windws, for instance:
5
+ * from = 'C:\\orandea\\test\\aaa'
6
+ * to = 'C:\\orandea\\impl\\bbb'
7
+ * The output of the function should be: '..\\..\\impl\\bbb'
8
+ *
9
+ * @param from path in current working directory
10
+ * @param to path in current working directory
11
+ */
12
+ export declare function relative(from: string, to: string): string;