unprint 0.0.0 → 0.2.1

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 (2256) hide show
  1. package/.editorconfig +14 -0
  2. package/.eslintrc +20 -0
  3. package/README.md +73 -0
  4. package/package.json +9 -3
  5. package/src/app.js +374 -1
  6. package/tests/data.json +5 -0
  7. package/tests/index.html +22 -0
  8. package/tests/init.js +60 -0
  9. package/tests/node_modules/.package-lock.json +1479 -0
  10. package/tests/node_modules/@tootallnate/once/dist/index.d.ts +14 -0
  11. package/tests/node_modules/@tootallnate/once/dist/index.js +39 -0
  12. package/tests/node_modules/@tootallnate/once/dist/index.js.map +1 -0
  13. package/tests/node_modules/@tootallnate/once/package.json +45 -0
  14. package/tests/node_modules/abab/LICENSE.md +13 -0
  15. package/tests/node_modules/abab/README.md +51 -0
  16. package/tests/node_modules/abab/index.d.ts +2 -0
  17. package/tests/node_modules/abab/index.js +9 -0
  18. package/tests/node_modules/abab/lib/atob.js +101 -0
  19. package/tests/node_modules/abab/lib/btoa.js +62 -0
  20. package/tests/node_modules/abab/package.json +42 -0
  21. package/tests/node_modules/accepts/HISTORY.md +243 -0
  22. package/tests/node_modules/accepts/LICENSE +23 -0
  23. package/tests/node_modules/accepts/README.md +140 -0
  24. package/tests/node_modules/accepts/index.js +238 -0
  25. package/tests/node_modules/accepts/package.json +47 -0
  26. package/tests/node_modules/acorn/CHANGELOG.md +798 -0
  27. package/tests/node_modules/acorn/LICENSE +21 -0
  28. package/tests/node_modules/acorn/README.md +273 -0
  29. package/tests/node_modules/acorn/bin/acorn +4 -0
  30. package/tests/node_modules/acorn/dist/acorn.d.ts +252 -0
  31. package/tests/node_modules/acorn/dist/acorn.js +5608 -0
  32. package/tests/node_modules/acorn/dist/acorn.mjs +5577 -0
  33. package/tests/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
  34. package/tests/node_modules/acorn/dist/bin.js +91 -0
  35. package/tests/node_modules/acorn/package.json +50 -0
  36. package/tests/node_modules/acorn-globals/LICENSE +19 -0
  37. package/tests/node_modules/acorn-globals/README.md +81 -0
  38. package/tests/node_modules/acorn-globals/index.js +179 -0
  39. package/tests/node_modules/acorn-globals/node_modules/acorn/CHANGELOG.md +620 -0
  40. package/tests/node_modules/acorn-globals/node_modules/acorn/LICENSE +21 -0
  41. package/tests/node_modules/acorn-globals/node_modules/acorn/README.md +269 -0
  42. package/tests/node_modules/acorn-globals/node_modules/acorn/bin/acorn +4 -0
  43. package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.d.ts +209 -0
  44. package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.js +5186 -0
  45. package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.js.map +1 -0
  46. package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs +5155 -0
  47. package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
  48. package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs.map +1 -0
  49. package/tests/node_modules/acorn-globals/node_modules/acorn/dist/bin.js +64 -0
  50. package/tests/node_modules/acorn-globals/node_modules/acorn/package.json +35 -0
  51. package/tests/node_modules/acorn-globals/package.json +35 -0
  52. package/tests/node_modules/acorn-walk/CHANGELOG.md +131 -0
  53. package/tests/node_modules/acorn-walk/LICENSE +19 -0
  54. package/tests/node_modules/acorn-walk/README.md +126 -0
  55. package/tests/node_modules/acorn-walk/dist/walk.d.ts +112 -0
  56. package/tests/node_modules/acorn-walk/dist/walk.js +463 -0
  57. package/tests/node_modules/acorn-walk/dist/walk.js.map +1 -0
  58. package/tests/node_modules/acorn-walk/dist/walk.mjs +443 -0
  59. package/tests/node_modules/acorn-walk/dist/walk.mjs.map +1 -0
  60. package/tests/node_modules/acorn-walk/package.json +34 -0
  61. package/tests/node_modules/agent-base/README.md +145 -0
  62. package/tests/node_modules/agent-base/dist/src/index.d.ts +78 -0
  63. package/tests/node_modules/agent-base/dist/src/index.js +203 -0
  64. package/tests/node_modules/agent-base/dist/src/index.js.map +1 -0
  65. package/tests/node_modules/agent-base/dist/src/promisify.d.ts +4 -0
  66. package/tests/node_modules/agent-base/dist/src/promisify.js +18 -0
  67. package/tests/node_modules/agent-base/dist/src/promisify.js.map +1 -0
  68. package/tests/node_modules/agent-base/node_modules/debug/LICENSE +20 -0
  69. package/tests/node_modules/agent-base/node_modules/debug/README.md +481 -0
  70. package/tests/node_modules/agent-base/node_modules/debug/package.json +59 -0
  71. package/tests/node_modules/agent-base/node_modules/debug/src/browser.js +269 -0
  72. package/tests/node_modules/agent-base/node_modules/debug/src/common.js +274 -0
  73. package/tests/node_modules/agent-base/node_modules/debug/src/index.js +10 -0
  74. package/tests/node_modules/agent-base/node_modules/debug/src/node.js +263 -0
  75. package/tests/node_modules/agent-base/node_modules/ms/index.js +162 -0
  76. package/tests/node_modules/agent-base/node_modules/ms/license.md +21 -0
  77. package/tests/node_modules/agent-base/node_modules/ms/package.json +37 -0
  78. package/tests/node_modules/agent-base/node_modules/ms/readme.md +60 -0
  79. package/tests/node_modules/agent-base/package.json +64 -0
  80. package/tests/node_modules/agent-base/src/index.ts +345 -0
  81. package/tests/node_modules/agent-base/src/promisify.ts +33 -0
  82. package/tests/node_modules/array-flatten/LICENSE +21 -0
  83. package/tests/node_modules/array-flatten/README.md +43 -0
  84. package/tests/node_modules/array-flatten/array-flatten.js +64 -0
  85. package/tests/node_modules/array-flatten/package.json +39 -0
  86. package/tests/node_modules/asynckit/LICENSE +21 -0
  87. package/tests/node_modules/asynckit/README.md +233 -0
  88. package/tests/node_modules/asynckit/bench.js +76 -0
  89. package/tests/node_modules/asynckit/index.js +6 -0
  90. package/tests/node_modules/asynckit/lib/abort.js +29 -0
  91. package/tests/node_modules/asynckit/lib/async.js +34 -0
  92. package/tests/node_modules/asynckit/lib/defer.js +26 -0
  93. package/tests/node_modules/asynckit/lib/iterate.js +75 -0
  94. package/tests/node_modules/asynckit/lib/readable_asynckit.js +91 -0
  95. package/tests/node_modules/asynckit/lib/readable_parallel.js +25 -0
  96. package/tests/node_modules/asynckit/lib/readable_serial.js +25 -0
  97. package/tests/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
  98. package/tests/node_modules/asynckit/lib/state.js +37 -0
  99. package/tests/node_modules/asynckit/lib/streamify.js +141 -0
  100. package/tests/node_modules/asynckit/lib/terminator.js +29 -0
  101. package/tests/node_modules/asynckit/package.json +63 -0
  102. package/tests/node_modules/asynckit/parallel.js +43 -0
  103. package/tests/node_modules/asynckit/serial.js +17 -0
  104. package/tests/node_modules/asynckit/serialOrdered.js +75 -0
  105. package/tests/node_modules/asynckit/stream.js +21 -0
  106. package/tests/node_modules/bhttp/.babelrc.json +5 -0
  107. package/tests/node_modules/bhttp/.browserslistrc +1 -0
  108. package/tests/node_modules/bhttp/.eslintrc +3 -0
  109. package/tests/node_modules/bhttp/CHANGELOG.md +80 -0
  110. package/tests/node_modules/bhttp/README.md +320 -0
  111. package/tests/node_modules/bhttp/index.js +3 -0
  112. package/tests/node_modules/bhttp/lib/bhttp.js +977 -0
  113. package/tests/node_modules/bhttp/lower.txt +296802 -0
  114. package/tests/node_modules/bhttp/package.json +48 -0
  115. package/tests/node_modules/bhttp/src/bhttp.js +787 -0
  116. package/tests/node_modules/bhttp/test/test-bhttp.coffee +148 -0
  117. package/tests/node_modules/bhttp/test/test-cookies.coffee +27 -0
  118. package/tests/node_modules/bhttp/test/test-exit.coffee +14 -0
  119. package/tests/node_modules/bhttp/test/test-exit2.js +36 -0
  120. package/tests/node_modules/bhttp/test/test-https-stream.coffee +7 -0
  121. package/tests/node_modules/bhttp/test/test-leak.coffee +5 -0
  122. package/tests/node_modules/bhttp/test/test-progress.coffee +38 -0
  123. package/tests/node_modules/bhttp/test/test-timeout.coffee +6 -0
  124. package/tests/node_modules/bhttp/test/testcase1.js +13 -0
  125. package/tests/node_modules/bluebird/LICENSE +21 -0
  126. package/tests/node_modules/bluebird/README.md +677 -0
  127. package/tests/node_modules/bluebird/changelog.md +1730 -0
  128. package/tests/node_modules/bluebird/js/browser/bluebird.js +4892 -0
  129. package/tests/node_modules/bluebird/js/browser/bluebird.min.js +31 -0
  130. package/tests/node_modules/bluebird/js/main/any.js +21 -0
  131. package/tests/node_modules/bluebird/js/main/assert.js +55 -0
  132. package/tests/node_modules/bluebird/js/main/async.js +150 -0
  133. package/tests/node_modules/bluebird/js/main/bind.js +72 -0
  134. package/tests/node_modules/bluebird/js/main/bluebird.js +11 -0
  135. package/tests/node_modules/bluebird/js/main/call_get.js +123 -0
  136. package/tests/node_modules/bluebird/js/main/cancel.js +48 -0
  137. package/tests/node_modules/bluebird/js/main/captured_trace.js +493 -0
  138. package/tests/node_modules/bluebird/js/main/catch_filter.js +66 -0
  139. package/tests/node_modules/bluebird/js/main/context.js +38 -0
  140. package/tests/node_modules/bluebird/js/main/debuggability.js +162 -0
  141. package/tests/node_modules/bluebird/js/main/direct_resolve.js +63 -0
  142. package/tests/node_modules/bluebird/js/main/each.js +12 -0
  143. package/tests/node_modules/bluebird/js/main/errors.js +111 -0
  144. package/tests/node_modules/bluebird/js/main/es5.js +80 -0
  145. package/tests/node_modules/bluebird/js/main/filter.js +12 -0
  146. package/tests/node_modules/bluebird/js/main/finally.js +98 -0
  147. package/tests/node_modules/bluebird/js/main/generators.js +136 -0
  148. package/tests/node_modules/bluebird/js/main/join.js +107 -0
  149. package/tests/node_modules/bluebird/js/main/map.js +133 -0
  150. package/tests/node_modules/bluebird/js/main/method.js +44 -0
  151. package/tests/node_modules/bluebird/js/main/nodeify.js +59 -0
  152. package/tests/node_modules/bluebird/js/main/progress.js +76 -0
  153. package/tests/node_modules/bluebird/js/main/promise.js +759 -0
  154. package/tests/node_modules/bluebird/js/main/promise_array.js +142 -0
  155. package/tests/node_modules/bluebird/js/main/promise_resolver.js +123 -0
  156. package/tests/node_modules/bluebird/js/main/promisify.js +307 -0
  157. package/tests/node_modules/bluebird/js/main/props.js +79 -0
  158. package/tests/node_modules/bluebird/js/main/queue.js +90 -0
  159. package/tests/node_modules/bluebird/js/main/race.js +47 -0
  160. package/tests/node_modules/bluebird/js/main/reduce.js +148 -0
  161. package/tests/node_modules/bluebird/js/main/schedule.js +35 -0
  162. package/tests/node_modules/bluebird/js/main/settle.js +40 -0
  163. package/tests/node_modules/bluebird/js/main/some.js +125 -0
  164. package/tests/node_modules/bluebird/js/main/synchronous_inspection.js +94 -0
  165. package/tests/node_modules/bluebird/js/main/thenables.js +84 -0
  166. package/tests/node_modules/bluebird/js/main/timers.js +64 -0
  167. package/tests/node_modules/bluebird/js/main/using.js +213 -0
  168. package/tests/node_modules/bluebird/js/main/util.js +321 -0
  169. package/tests/node_modules/bluebird/package.json +78 -0
  170. package/tests/node_modules/body-parser/HISTORY.md +651 -0
  171. package/tests/node_modules/body-parser/LICENSE +23 -0
  172. package/tests/node_modules/body-parser/README.md +464 -0
  173. package/tests/node_modules/body-parser/SECURITY.md +25 -0
  174. package/tests/node_modules/body-parser/index.js +157 -0
  175. package/tests/node_modules/body-parser/lib/read.js +205 -0
  176. package/tests/node_modules/body-parser/lib/types/json.js +236 -0
  177. package/tests/node_modules/body-parser/lib/types/raw.js +101 -0
  178. package/tests/node_modules/body-parser/lib/types/text.js +121 -0
  179. package/tests/node_modules/body-parser/lib/types/urlencoded.js +284 -0
  180. package/tests/node_modules/body-parser/package.json +56 -0
  181. package/tests/node_modules/browser-process-hrtime/LICENSE +9 -0
  182. package/tests/node_modules/browser-process-hrtime/README.md +27 -0
  183. package/tests/node_modules/browser-process-hrtime/index.d.ts +4 -0
  184. package/tests/node_modules/browser-process-hrtime/index.js +28 -0
  185. package/tests/node_modules/browser-process-hrtime/package.json +15 -0
  186. package/tests/node_modules/buffer-from/LICENSE +21 -0
  187. package/tests/node_modules/buffer-from/index.js +72 -0
  188. package/tests/node_modules/buffer-from/package.json +19 -0
  189. package/tests/node_modules/buffer-from/readme.md +69 -0
  190. package/tests/node_modules/bytes/History.md +97 -0
  191. package/tests/node_modules/bytes/LICENSE +23 -0
  192. package/tests/node_modules/bytes/Readme.md +152 -0
  193. package/tests/node_modules/bytes/index.js +170 -0
  194. package/tests/node_modules/bytes/package.json +42 -0
  195. package/tests/node_modules/call-bind/.eslintignore +1 -0
  196. package/tests/node_modules/call-bind/.eslintrc +17 -0
  197. package/tests/node_modules/call-bind/.github/FUNDING.yml +12 -0
  198. package/tests/node_modules/call-bind/.nycrc +13 -0
  199. package/tests/node_modules/call-bind/CHANGELOG.md +42 -0
  200. package/tests/node_modules/call-bind/LICENSE +21 -0
  201. package/tests/node_modules/call-bind/README.md +2 -0
  202. package/tests/node_modules/call-bind/callBound.js +15 -0
  203. package/tests/node_modules/call-bind/index.js +47 -0
  204. package/tests/node_modules/call-bind/package.json +80 -0
  205. package/tests/node_modules/call-bind/test/callBound.js +55 -0
  206. package/tests/node_modules/call-bind/test/index.js +66 -0
  207. package/tests/node_modules/combined-stream/License +19 -0
  208. package/tests/node_modules/combined-stream/Readme.md +138 -0
  209. package/tests/node_modules/combined-stream/lib/combined_stream.js +208 -0
  210. package/tests/node_modules/combined-stream/package.json +25 -0
  211. package/tests/node_modules/combined-stream/yarn.lock +17 -0
  212. package/tests/node_modules/combined-stream2/README.md +129 -0
  213. package/tests/node_modules/combined-stream2/gulpfile.js +28 -0
  214. package/tests/node_modules/combined-stream2/index.coffee +1 -0
  215. package/tests/node_modules/combined-stream2/index.js +1 -0
  216. package/tests/node_modules/combined-stream2/lib/combined-stream2.coffee +197 -0
  217. package/tests/node_modules/combined-stream2/lib/combined-stream2.js +267 -0
  218. package/tests/node_modules/combined-stream2/package.json +40 -0
  219. package/tests/node_modules/combined-stream2/test.coffee +9 -0
  220. package/tests/node_modules/combined-stream2/testcase-request.coffee +8 -0
  221. package/tests/node_modules/concat-stream/LICENSE +24 -0
  222. package/tests/node_modules/concat-stream/index.js +144 -0
  223. package/tests/node_modules/concat-stream/package.json +55 -0
  224. package/tests/node_modules/concat-stream/readme.md +102 -0
  225. package/tests/node_modules/content-disposition/HISTORY.md +60 -0
  226. package/tests/node_modules/content-disposition/LICENSE +22 -0
  227. package/tests/node_modules/content-disposition/README.md +142 -0
  228. package/tests/node_modules/content-disposition/index.js +458 -0
  229. package/tests/node_modules/content-disposition/node_modules/safe-buffer/LICENSE +21 -0
  230. package/tests/node_modules/content-disposition/node_modules/safe-buffer/README.md +584 -0
  231. package/tests/node_modules/content-disposition/node_modules/safe-buffer/index.d.ts +187 -0
  232. package/tests/node_modules/content-disposition/node_modules/safe-buffer/index.js +65 -0
  233. package/tests/node_modules/content-disposition/node_modules/safe-buffer/package.json +51 -0
  234. package/tests/node_modules/content-disposition/package.json +44 -0
  235. package/tests/node_modules/content-type/HISTORY.md +24 -0
  236. package/tests/node_modules/content-type/LICENSE +22 -0
  237. package/tests/node_modules/content-type/README.md +92 -0
  238. package/tests/node_modules/content-type/index.js +222 -0
  239. package/tests/node_modules/content-type/package.json +40 -0
  240. package/tests/node_modules/cookie/HISTORY.md +142 -0
  241. package/tests/node_modules/cookie/LICENSE +24 -0
  242. package/tests/node_modules/cookie/README.md +302 -0
  243. package/tests/node_modules/cookie/SECURITY.md +25 -0
  244. package/tests/node_modules/cookie/index.js +270 -0
  245. package/tests/node_modules/cookie/package.json +44 -0
  246. package/tests/node_modules/cookie-signature/History.md +38 -0
  247. package/tests/node_modules/cookie-signature/Readme.md +42 -0
  248. package/tests/node_modules/cookie-signature/index.js +51 -0
  249. package/tests/node_modules/cookie-signature/package.json +18 -0
  250. package/tests/node_modules/core-util-is/LICENSE +19 -0
  251. package/tests/node_modules/core-util-is/README.md +3 -0
  252. package/tests/node_modules/core-util-is/lib/util.js +107 -0
  253. package/tests/node_modules/core-util-is/package.json +38 -0
  254. package/tests/node_modules/cssom/LICENSE.txt +20 -0
  255. package/tests/node_modules/cssom/README.mdown +67 -0
  256. package/tests/node_modules/cssom/lib/CSSConditionRule.js +25 -0
  257. package/tests/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
  258. package/tests/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
  259. package/tests/node_modules/cssom/lib/CSSGroupingRule.js +68 -0
  260. package/tests/node_modules/cssom/lib/CSSHostRule.js +37 -0
  261. package/tests/node_modules/cssom/lib/CSSImportRule.js +132 -0
  262. package/tests/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
  263. package/tests/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
  264. package/tests/node_modules/cssom/lib/CSSMediaRule.js +53 -0
  265. package/tests/node_modules/cssom/lib/CSSOM.js +3 -0
  266. package/tests/node_modules/cssom/lib/CSSRule.js +43 -0
  267. package/tests/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
  268. package/tests/node_modules/cssom/lib/CSSStyleRule.js +190 -0
  269. package/tests/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
  270. package/tests/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
  271. package/tests/node_modules/cssom/lib/CSSValue.js +43 -0
  272. package/tests/node_modules/cssom/lib/CSSValueExpression.js +344 -0
  273. package/tests/node_modules/cssom/lib/MatcherList.js +62 -0
  274. package/tests/node_modules/cssom/lib/MediaList.js +61 -0
  275. package/tests/node_modules/cssom/lib/StyleSheet.js +17 -0
  276. package/tests/node_modules/cssom/lib/clone.js +74 -0
  277. package/tests/node_modules/cssom/lib/index.js +23 -0
  278. package/tests/node_modules/cssom/lib/parse.js +465 -0
  279. package/tests/node_modules/cssom/package.json +18 -0
  280. package/tests/node_modules/cssstyle/LICENSE +20 -0
  281. package/tests/node_modules/cssstyle/README.md +15 -0
  282. package/tests/node_modules/cssstyle/lib/CSSStyleDeclaration.js +260 -0
  283. package/tests/node_modules/cssstyle/lib/CSSStyleDeclaration.test.js +556 -0
  284. package/tests/node_modules/cssstyle/lib/allExtraProperties.js +67 -0
  285. package/tests/node_modules/cssstyle/lib/allProperties.js +462 -0
  286. package/tests/node_modules/cssstyle/lib/allWebkitProperties.js +194 -0
  287. package/tests/node_modules/cssstyle/lib/constants.js +6 -0
  288. package/tests/node_modules/cssstyle/lib/implementedProperties.js +90 -0
  289. package/tests/node_modules/cssstyle/lib/named_colors.json +152 -0
  290. package/tests/node_modules/cssstyle/lib/parsers.js +722 -0
  291. package/tests/node_modules/cssstyle/lib/parsers.test.js +139 -0
  292. package/tests/node_modules/cssstyle/lib/properties/azimuth.js +67 -0
  293. package/tests/node_modules/cssstyle/lib/properties/background.js +19 -0
  294. package/tests/node_modules/cssstyle/lib/properties/backgroundAttachment.js +24 -0
  295. package/tests/node_modules/cssstyle/lib/properties/backgroundColor.js +36 -0
  296. package/tests/node_modules/cssstyle/lib/properties/backgroundImage.js +32 -0
  297. package/tests/node_modules/cssstyle/lib/properties/backgroundPosition.js +58 -0
  298. package/tests/node_modules/cssstyle/lib/properties/backgroundRepeat.js +32 -0
  299. package/tests/node_modules/cssstyle/lib/properties/border.js +33 -0
  300. package/tests/node_modules/cssstyle/lib/properties/borderBottom.js +17 -0
  301. package/tests/node_modules/cssstyle/lib/properties/borderBottomColor.js +16 -0
  302. package/tests/node_modules/cssstyle/lib/properties/borderBottomStyle.js +21 -0
  303. package/tests/node_modules/cssstyle/lib/properties/borderBottomWidth.js +16 -0
  304. package/tests/node_modules/cssstyle/lib/properties/borderCollapse.js +26 -0
  305. package/tests/node_modules/cssstyle/lib/properties/borderColor.js +30 -0
  306. package/tests/node_modules/cssstyle/lib/properties/borderLeft.js +17 -0
  307. package/tests/node_modules/cssstyle/lib/properties/borderLeftColor.js +16 -0
  308. package/tests/node_modules/cssstyle/lib/properties/borderLeftStyle.js +21 -0
  309. package/tests/node_modules/cssstyle/lib/properties/borderLeftWidth.js +16 -0
  310. package/tests/node_modules/cssstyle/lib/properties/borderRight.js +17 -0
  311. package/tests/node_modules/cssstyle/lib/properties/borderRightColor.js +16 -0
  312. package/tests/node_modules/cssstyle/lib/properties/borderRightStyle.js +21 -0
  313. package/tests/node_modules/cssstyle/lib/properties/borderRightWidth.js +16 -0
  314. package/tests/node_modules/cssstyle/lib/properties/borderSpacing.js +41 -0
  315. package/tests/node_modules/cssstyle/lib/properties/borderStyle.js +38 -0
  316. package/tests/node_modules/cssstyle/lib/properties/borderTop.js +17 -0
  317. package/tests/node_modules/cssstyle/lib/properties/borderTopColor.js +16 -0
  318. package/tests/node_modules/cssstyle/lib/properties/borderTopStyle.js +21 -0
  319. package/tests/node_modules/cssstyle/lib/properties/borderTopWidth.js +17 -0
  320. package/tests/node_modules/cssstyle/lib/properties/borderWidth.js +46 -0
  321. package/tests/node_modules/cssstyle/lib/properties/bottom.js +14 -0
  322. package/tests/node_modules/cssstyle/lib/properties/clear.js +16 -0
  323. package/tests/node_modules/cssstyle/lib/properties/clip.js +47 -0
  324. package/tests/node_modules/cssstyle/lib/properties/color.js +14 -0
  325. package/tests/node_modules/cssstyle/lib/properties/cssFloat.js +12 -0
  326. package/tests/node_modules/cssstyle/lib/properties/flex.js +45 -0
  327. package/tests/node_modules/cssstyle/lib/properties/flexBasis.js +28 -0
  328. package/tests/node_modules/cssstyle/lib/properties/flexGrow.js +19 -0
  329. package/tests/node_modules/cssstyle/lib/properties/flexShrink.js +19 -0
  330. package/tests/node_modules/cssstyle/lib/properties/float.js +12 -0
  331. package/tests/node_modules/cssstyle/lib/properties/floodColor.js +14 -0
  332. package/tests/node_modules/cssstyle/lib/properties/font.js +43 -0
  333. package/tests/node_modules/cssstyle/lib/properties/fontFamily.js +33 -0
  334. package/tests/node_modules/cssstyle/lib/properties/fontSize.js +38 -0
  335. package/tests/node_modules/cssstyle/lib/properties/fontStyle.js +18 -0
  336. package/tests/node_modules/cssstyle/lib/properties/fontVariant.js +18 -0
  337. package/tests/node_modules/cssstyle/lib/properties/fontWeight.js +33 -0
  338. package/tests/node_modules/cssstyle/lib/properties/height.js +24 -0
  339. package/tests/node_modules/cssstyle/lib/properties/left.js +14 -0
  340. package/tests/node_modules/cssstyle/lib/properties/lightingColor.js +14 -0
  341. package/tests/node_modules/cssstyle/lib/properties/lineHeight.js +26 -0
  342. package/tests/node_modules/cssstyle/lib/properties/margin.js +68 -0
  343. package/tests/node_modules/cssstyle/lib/properties/marginBottom.js +13 -0
  344. package/tests/node_modules/cssstyle/lib/properties/marginLeft.js +13 -0
  345. package/tests/node_modules/cssstyle/lib/properties/marginRight.js +13 -0
  346. package/tests/node_modules/cssstyle/lib/properties/marginTop.js +13 -0
  347. package/tests/node_modules/cssstyle/lib/properties/opacity.js +14 -0
  348. package/tests/node_modules/cssstyle/lib/properties/outlineColor.js +14 -0
  349. package/tests/node_modules/cssstyle/lib/properties/padding.js +61 -0
  350. package/tests/node_modules/cssstyle/lib/properties/paddingBottom.js +13 -0
  351. package/tests/node_modules/cssstyle/lib/properties/paddingLeft.js +13 -0
  352. package/tests/node_modules/cssstyle/lib/properties/paddingRight.js +13 -0
  353. package/tests/node_modules/cssstyle/lib/properties/paddingTop.js +13 -0
  354. package/tests/node_modules/cssstyle/lib/properties/right.js +14 -0
  355. package/tests/node_modules/cssstyle/lib/properties/stopColor.js +14 -0
  356. package/tests/node_modules/cssstyle/lib/properties/textLineThroughColor.js +14 -0
  357. package/tests/node_modules/cssstyle/lib/properties/textOverlineColor.js +14 -0
  358. package/tests/node_modules/cssstyle/lib/properties/textUnderlineColor.js +14 -0
  359. package/tests/node_modules/cssstyle/lib/properties/top.js +14 -0
  360. package/tests/node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js +14 -0
  361. package/tests/node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js +14 -0
  362. package/tests/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js +14 -0
  363. package/tests/node_modules/cssstyle/lib/properties/webkitBorderStartColor.js +14 -0
  364. package/tests/node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js +14 -0
  365. package/tests/node_modules/cssstyle/lib/properties/webkitMatchNearestMailBlockquoteColor.js +14 -0
  366. package/tests/node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js +14 -0
  367. package/tests/node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js +14 -0
  368. package/tests/node_modules/cssstyle/lib/properties/webkitTextFillColor.js +14 -0
  369. package/tests/node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js +14 -0
  370. package/tests/node_modules/cssstyle/lib/properties/width.js +24 -0
  371. package/tests/node_modules/cssstyle/lib/properties.js +1833 -0
  372. package/tests/node_modules/cssstyle/lib/utils/colorSpace.js +21 -0
  373. package/tests/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js +14 -0
  374. package/tests/node_modules/cssstyle/node_modules/cssom/LICENSE.txt +20 -0
  375. package/tests/node_modules/cssstyle/node_modules/cssom/README.mdown +67 -0
  376. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
  377. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
  378. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSHostRule.js +37 -0
  379. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSImportRule.js +132 -0
  380. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
  381. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
  382. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSMediaRule.js +41 -0
  383. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSOM.js +3 -0
  384. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSRule.js +43 -0
  385. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
  386. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSStyleRule.js +190 -0
  387. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
  388. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
  389. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSValue.js +43 -0
  390. package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSValueExpression.js +344 -0
  391. package/tests/node_modules/cssstyle/node_modules/cssom/lib/MatcherList.js +62 -0
  392. package/tests/node_modules/cssstyle/node_modules/cssom/lib/MediaList.js +61 -0
  393. package/tests/node_modules/cssstyle/node_modules/cssom/lib/StyleSheet.js +17 -0
  394. package/tests/node_modules/cssstyle/node_modules/cssom/lib/clone.js +82 -0
  395. package/tests/node_modules/cssstyle/node_modules/cssom/lib/index.js +21 -0
  396. package/tests/node_modules/cssstyle/node_modules/cssom/lib/parse.js +464 -0
  397. package/tests/node_modules/cssstyle/node_modules/cssom/package.json +18 -0
  398. package/tests/node_modules/cssstyle/package.json +72 -0
  399. package/tests/node_modules/data-urls/LICENSE.txt +7 -0
  400. package/tests/node_modules/data-urls/README.md +62 -0
  401. package/tests/node_modules/data-urls/lib/parser.js +69 -0
  402. package/tests/node_modules/data-urls/lib/utils.js +18 -0
  403. package/tests/node_modules/data-urls/node_modules/tr46/LICENSE.md +21 -0
  404. package/tests/node_modules/data-urls/node_modules/tr46/README.md +78 -0
  405. package/tests/node_modules/data-urls/node_modules/tr46/index.js +298 -0
  406. package/tests/node_modules/data-urls/node_modules/tr46/lib/mappingTable.json +1 -0
  407. package/tests/node_modules/data-urls/node_modules/tr46/lib/regexes.js +29 -0
  408. package/tests/node_modules/data-urls/node_modules/tr46/lib/statusMapping.js +11 -0
  409. package/tests/node_modules/data-urls/node_modules/tr46/package.json +47 -0
  410. package/tests/node_modules/data-urls/node_modules/webidl-conversions/LICENSE.md +12 -0
  411. package/tests/node_modules/data-urls/node_modules/webidl-conversions/README.md +99 -0
  412. package/tests/node_modules/data-urls/node_modules/webidl-conversions/lib/index.js +450 -0
  413. package/tests/node_modules/data-urls/node_modules/webidl-conversions/package.json +35 -0
  414. package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
  415. package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/README.md +101 -0
  416. package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
  417. package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/mime-type.js +127 -0
  418. package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/parser.js +105 -0
  419. package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
  420. package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/utils.js +60 -0
  421. package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/package.json +47 -0
  422. package/tests/node_modules/data-urls/node_modules/whatwg-url/LICENSE.txt +21 -0
  423. package/tests/node_modules/data-urls/node_modules/whatwg-url/README.md +106 -0
  424. package/tests/node_modules/data-urls/node_modules/whatwg-url/index.js +27 -0
  425. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/Function.js +42 -0
  426. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URL-impl.js +209 -0
  427. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URL.js +442 -0
  428. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URLSearchParams-impl.js +130 -0
  429. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URLSearchParams.js +472 -0
  430. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
  431. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/encoding.js +16 -0
  432. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/infra.js +26 -0
  433. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
  434. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/url-state-machine.js +1244 -0
  435. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/urlencoded.js +106 -0
  436. package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/utils.js +190 -0
  437. package/tests/node_modules/data-urls/node_modules/whatwg-url/package.json +58 -0
  438. package/tests/node_modules/data-urls/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
  439. package/tests/node_modules/data-urls/package.json +54 -0
  440. package/tests/node_modules/dayjs/.editorconfig +6 -0
  441. package/tests/node_modules/dayjs/CHANGELOG.md +841 -0
  442. package/tests/node_modules/dayjs/LICENSE +21 -0
  443. package/tests/node_modules/dayjs/README.md +135 -0
  444. package/tests/node_modules/dayjs/dayjs.min.js +1 -0
  445. package/tests/node_modules/dayjs/esm/constant.js +25 -0
  446. package/tests/node_modules/dayjs/esm/index.d.ts +429 -0
  447. package/tests/node_modules/dayjs/esm/index.js +441 -0
  448. package/tests/node_modules/dayjs/esm/locale/af.js +39 -0
  449. package/tests/node_modules/dayjs/esm/locale/am.js +40 -0
  450. package/tests/node_modules/dayjs/esm/locale/ar-dz.js +41 -0
  451. package/tests/node_modules/dayjs/esm/locale/ar-iq.js +42 -0
  452. package/tests/node_modules/dayjs/esm/locale/ar-kw.js +41 -0
  453. package/tests/node_modules/dayjs/esm/locale/ar-ly.js +27 -0
  454. package/tests/node_modules/dayjs/esm/locale/ar-ma.js +42 -0
  455. package/tests/node_modules/dayjs/esm/locale/ar-sa.js +41 -0
  456. package/tests/node_modules/dayjs/esm/locale/ar-tn.js +42 -0
  457. package/tests/node_modules/dayjs/esm/locale/ar.js +74 -0
  458. package/tests/node_modules/dayjs/esm/locale/az.js +39 -0
  459. package/tests/node_modules/dayjs/esm/locale/be.js +24 -0
  460. package/tests/node_modules/dayjs/esm/locale/bg.js +55 -0
  461. package/tests/node_modules/dayjs/esm/locale/bi.js +39 -0
  462. package/tests/node_modules/dayjs/esm/locale/bm.js +39 -0
  463. package/tests/node_modules/dayjs/esm/locale/bn-bd.js +81 -0
  464. package/tests/node_modules/dayjs/esm/locale/bn.js +72 -0
  465. package/tests/node_modules/dayjs/esm/locale/bo.js +38 -0
  466. package/tests/node_modules/dayjs/esm/locale/br.js +93 -0
  467. package/tests/node_modules/dayjs/esm/locale/bs.js +24 -0
  468. package/tests/node_modules/dayjs/esm/locale/ca.js +44 -0
  469. package/tests/node_modules/dayjs/esm/locale/cs.js +120 -0
  470. package/tests/node_modules/dayjs/esm/locale/cv.js +24 -0
  471. package/tests/node_modules/dayjs/esm/locale/cy.js +39 -0
  472. package/tests/node_modules/dayjs/esm/locale/da.js +39 -0
  473. package/tests/node_modules/dayjs/esm/locale/de-at.js +63 -0
  474. package/tests/node_modules/dayjs/esm/locale/de-ch.js +63 -0
  475. package/tests/node_modules/dayjs/esm/locale/de.js +64 -0
  476. package/tests/node_modules/dayjs/esm/locale/dv.js +39 -0
  477. package/tests/node_modules/dayjs/esm/locale/el.js +39 -0
  478. package/tests/node_modules/dayjs/esm/locale/en-au.js +39 -0
  479. package/tests/node_modules/dayjs/esm/locale/en-ca.js +38 -0
  480. package/tests/node_modules/dayjs/esm/locale/en-gb.js +42 -0
  481. package/tests/node_modules/dayjs/esm/locale/en-ie.js +39 -0
  482. package/tests/node_modules/dayjs/esm/locale/en-il.js +38 -0
  483. package/tests/node_modules/dayjs/esm/locale/en-in.js +42 -0
  484. package/tests/node_modules/dayjs/esm/locale/en-nz.js +41 -0
  485. package/tests/node_modules/dayjs/esm/locale/en-sg.js +39 -0
  486. package/tests/node_modules/dayjs/esm/locale/en-tt.js +42 -0
  487. package/tests/node_modules/dayjs/esm/locale/en.js +7 -0
  488. package/tests/node_modules/dayjs/esm/locale/eo.js +39 -0
  489. package/tests/node_modules/dayjs/esm/locale/es-do.js +39 -0
  490. package/tests/node_modules/dayjs/esm/locale/es-mx.js +38 -0
  491. package/tests/node_modules/dayjs/esm/locale/es-pr.js +39 -0
  492. package/tests/node_modules/dayjs/esm/locale/es-us.js +38 -0
  493. package/tests/node_modules/dayjs/esm/locale/es.js +39 -0
  494. package/tests/node_modules/dayjs/esm/locale/et.js +65 -0
  495. package/tests/node_modules/dayjs/esm/locale/eu.js +43 -0
  496. package/tests/node_modules/dayjs/esm/locale/fa.js +39 -0
  497. package/tests/node_modules/dayjs/esm/locale/fi.js +88 -0
  498. package/tests/node_modules/dayjs/esm/locale/fo.js +39 -0
  499. package/tests/node_modules/dayjs/esm/locale/fr-ca.js +38 -0
  500. package/tests/node_modules/dayjs/esm/locale/fr-ch.js +39 -0
  501. package/tests/node_modules/dayjs/esm/locale/fr.js +41 -0
  502. package/tests/node_modules/dayjs/esm/locale/fy.js +39 -0
  503. package/tests/node_modules/dayjs/esm/locale/ga.js +39 -0
  504. package/tests/node_modules/dayjs/esm/locale/gd.js +39 -0
  505. package/tests/node_modules/dayjs/esm/locale/gl.js +39 -0
  506. package/tests/node_modules/dayjs/esm/locale/gom-latn.js +25 -0
  507. package/tests/node_modules/dayjs/esm/locale/gu.js +38 -0
  508. package/tests/node_modules/dayjs/esm/locale/he.js +78 -0
  509. package/tests/node_modules/dayjs/esm/locale/hi.js +38 -0
  510. package/tests/node_modules/dayjs/esm/locale/hr.js +53 -0
  511. package/tests/node_modules/dayjs/esm/locale/ht.js +38 -0
  512. package/tests/node_modules/dayjs/esm/locale/hu.js +61 -0
  513. package/tests/node_modules/dayjs/esm/locale/hy-am.js +39 -0
  514. package/tests/node_modules/dayjs/esm/locale/id.js +39 -0
  515. package/tests/node_modules/dayjs/esm/locale/index.d.ts +11 -0
  516. package/tests/node_modules/dayjs/esm/locale/is.js +68 -0
  517. package/tests/node_modules/dayjs/esm/locale/it-ch.js +39 -0
  518. package/tests/node_modules/dayjs/esm/locale/it.js +39 -0
  519. package/tests/node_modules/dayjs/esm/locale/ja.js +45 -0
  520. package/tests/node_modules/dayjs/esm/locale/jv.js +39 -0
  521. package/tests/node_modules/dayjs/esm/locale/ka.js +39 -0
  522. package/tests/node_modules/dayjs/esm/locale/kk.js +39 -0
  523. package/tests/node_modules/dayjs/esm/locale/km.js +39 -0
  524. package/tests/node_modules/dayjs/esm/locale/kn.js +38 -0
  525. package/tests/node_modules/dayjs/esm/locale/ko.js +45 -0
  526. package/tests/node_modules/dayjs/esm/locale/ku.js +77 -0
  527. package/tests/node_modules/dayjs/esm/locale/ky.js +39 -0
  528. package/tests/node_modules/dayjs/esm/locale/lb.js +24 -0
  529. package/tests/node_modules/dayjs/esm/locale/lo.js +38 -0
  530. package/tests/node_modules/dayjs/esm/locale/lt.js +70 -0
  531. package/tests/node_modules/dayjs/esm/locale/lv.js +39 -0
  532. package/tests/node_modules/dayjs/esm/locale/me.js +24 -0
  533. package/tests/node_modules/dayjs/esm/locale/mi.js +39 -0
  534. package/tests/node_modules/dayjs/esm/locale/mk.js +39 -0
  535. package/tests/node_modules/dayjs/esm/locale/ml.js +38 -0
  536. package/tests/node_modules/dayjs/esm/locale/mn.js +38 -0
  537. package/tests/node_modules/dayjs/esm/locale/mr.js +23 -0
  538. package/tests/node_modules/dayjs/esm/locale/ms-my.js +39 -0
  539. package/tests/node_modules/dayjs/esm/locale/ms.js +39 -0
  540. package/tests/node_modules/dayjs/esm/locale/mt.js +39 -0
  541. package/tests/node_modules/dayjs/esm/locale/my.js +39 -0
  542. package/tests/node_modules/dayjs/esm/locale/nb.js +40 -0
  543. package/tests/node_modules/dayjs/esm/locale/ne.js +40 -0
  544. package/tests/node_modules/dayjs/esm/locale/nl-be.js +39 -0
  545. package/tests/node_modules/dayjs/esm/locale/nl.js +40 -0
  546. package/tests/node_modules/dayjs/esm/locale/nn.js +39 -0
  547. package/tests/node_modules/dayjs/esm/locale/oc-lnc.js +39 -0
  548. package/tests/node_modules/dayjs/esm/locale/pa-in.js +38 -0
  549. package/tests/node_modules/dayjs/esm/locale/pl.js +87 -0
  550. package/tests/node_modules/dayjs/esm/locale/pt-br.js +38 -0
  551. package/tests/node_modules/dayjs/esm/locale/pt.js +40 -0
  552. package/tests/node_modules/dayjs/esm/locale/rn.js +39 -0
  553. package/tests/node_modules/dayjs/esm/locale/ro.js +39 -0
  554. package/tests/node_modules/dayjs/esm/locale/ru.js +99 -0
  555. package/tests/node_modules/dayjs/esm/locale/rw.js +35 -0
  556. package/tests/node_modules/dayjs/esm/locale/sd.js +39 -0
  557. package/tests/node_modules/dayjs/esm/locale/se.js +39 -0
  558. package/tests/node_modules/dayjs/esm/locale/si.js +38 -0
  559. package/tests/node_modules/dayjs/esm/locale/sk.js +121 -0
  560. package/tests/node_modules/dayjs/esm/locale/sl.js +39 -0
  561. package/tests/node_modules/dayjs/esm/locale/sq.js +39 -0
  562. package/tests/node_modules/dayjs/esm/locale/sr-cyrl.js +74 -0
  563. package/tests/node_modules/dayjs/esm/locale/sr.js +74 -0
  564. package/tests/node_modules/dayjs/esm/locale/ss.js +39 -0
  565. package/tests/node_modules/dayjs/esm/locale/sv-fi.js +46 -0
  566. package/tests/node_modules/dayjs/esm/locale/sv.js +44 -0
  567. package/tests/node_modules/dayjs/esm/locale/sw.js +39 -0
  568. package/tests/node_modules/dayjs/esm/locale/ta.js +38 -0
  569. package/tests/node_modules/dayjs/esm/locale/te.js +38 -0
  570. package/tests/node_modules/dayjs/esm/locale/tet.js +39 -0
  571. package/tests/node_modules/dayjs/esm/locale/tg.js +39 -0
  572. package/tests/node_modules/dayjs/esm/locale/th.js +38 -0
  573. package/tests/node_modules/dayjs/esm/locale/tk.js +39 -0
  574. package/tests/node_modules/dayjs/esm/locale/tl-ph.js +39 -0
  575. package/tests/node_modules/dayjs/esm/locale/tlh.js +24 -0
  576. package/tests/node_modules/dayjs/esm/locale/tr.js +39 -0
  577. package/tests/node_modules/dayjs/esm/locale/types.d.ts +33 -0
  578. package/tests/node_modules/dayjs/esm/locale/tzl.js +24 -0
  579. package/tests/node_modules/dayjs/esm/locale/tzm-latn.js +39 -0
  580. package/tests/node_modules/dayjs/esm/locale/tzm.js +39 -0
  581. package/tests/node_modules/dayjs/esm/locale/ug-cn.js +39 -0
  582. package/tests/node_modules/dayjs/esm/locale/uk.js +77 -0
  583. package/tests/node_modules/dayjs/esm/locale/ur.js +39 -0
  584. package/tests/node_modules/dayjs/esm/locale/uz-latn.js +39 -0
  585. package/tests/node_modules/dayjs/esm/locale/uz.js +39 -0
  586. package/tests/node_modules/dayjs/esm/locale/vi.js +43 -0
  587. package/tests/node_modules/dayjs/esm/locale/x-pseudo.js +39 -0
  588. package/tests/node_modules/dayjs/esm/locale/yo.js +39 -0
  589. package/tests/node_modules/dayjs/esm/locale/zh-cn.js +67 -0
  590. package/tests/node_modules/dayjs/esm/locale/zh-hk.js +38 -0
  591. package/tests/node_modules/dayjs/esm/locale/zh-tw.js +42 -0
  592. package/tests/node_modules/dayjs/esm/locale/zh.js +67 -0
  593. package/tests/node_modules/dayjs/esm/plugin/advancedFormat/index.d.ts +4 -0
  594. package/tests/node_modules/dayjs/esm/plugin/advancedFormat/index.js +73 -0
  595. package/tests/node_modules/dayjs/esm/plugin/arraySupport/index.d.ts +10 -0
  596. package/tests/node_modules/dayjs/esm/plugin/arraySupport/index.js +33 -0
  597. package/tests/node_modules/dayjs/esm/plugin/badMutable/index.d.ts +4 -0
  598. package/tests/node_modules/dayjs/esm/plugin/badMutable/index.js +61 -0
  599. package/tests/node_modules/dayjs/esm/plugin/buddhistEra/index.d.ts +4 -0
  600. package/tests/node_modules/dayjs/esm/plugin/buddhistEra/index.js +21 -0
  601. package/tests/node_modules/dayjs/esm/plugin/calendar/index.d.ts +10 -0
  602. package/tests/node_modules/dayjs/esm/plugin/calendar/index.js +32 -0
  603. package/tests/node_modules/dayjs/esm/plugin/customParseFormat/index.d.ts +8 -0
  604. package/tests/node_modules/dayjs/esm/plugin/customParseFormat/index.js +320 -0
  605. package/tests/node_modules/dayjs/esm/plugin/dayOfYear/index.d.ts +11 -0
  606. package/tests/node_modules/dayjs/esm/plugin/dayOfYear/index.js +9 -0
  607. package/tests/node_modules/dayjs/esm/plugin/devHelper/index.d.ts +4 -0
  608. package/tests/node_modules/dayjs/esm/plugin/devHelper/index.js +38 -0
  609. package/tests/node_modules/dayjs/esm/plugin/duration/index.d.ts +88 -0
  610. package/tests/node_modules/dayjs/esm/plugin/duration/index.js +341 -0
  611. package/tests/node_modules/dayjs/esm/plugin/isBetween/index.d.ts +10 -0
  612. package/tests/node_modules/dayjs/esm/plugin/isBetween/index.js +10 -0
  613. package/tests/node_modules/dayjs/esm/plugin/isLeapYear/index.d.ts +10 -0
  614. package/tests/node_modules/dayjs/esm/plugin/isLeapYear/index.js +7 -0
  615. package/tests/node_modules/dayjs/esm/plugin/isMoment/index.d.ts +10 -0
  616. package/tests/node_modules/dayjs/esm/plugin/isMoment/index.js +5 -0
  617. package/tests/node_modules/dayjs/esm/plugin/isSameOrAfter/index.d.ts +10 -0
  618. package/tests/node_modules/dayjs/esm/plugin/isSameOrAfter/index.js +5 -0
  619. package/tests/node_modules/dayjs/esm/plugin/isSameOrBefore/index.d.ts +10 -0
  620. package/tests/node_modules/dayjs/esm/plugin/isSameOrBefore/index.js +5 -0
  621. package/tests/node_modules/dayjs/esm/plugin/isToday/index.d.ts +10 -0
  622. package/tests/node_modules/dayjs/esm/plugin/isToday/index.js +9 -0
  623. package/tests/node_modules/dayjs/esm/plugin/isTomorrow/index.d.ts +10 -0
  624. package/tests/node_modules/dayjs/esm/plugin/isTomorrow/index.js +9 -0
  625. package/tests/node_modules/dayjs/esm/plugin/isYesterday/index.d.ts +10 -0
  626. package/tests/node_modules/dayjs/esm/plugin/isYesterday/index.js +9 -0
  627. package/tests/node_modules/dayjs/esm/plugin/isoWeek/index.d.ts +27 -0
  628. package/tests/node_modules/dayjs/esm/plugin/isoWeek/index.js +57 -0
  629. package/tests/node_modules/dayjs/esm/plugin/isoWeeksInYear/index.d.ts +10 -0
  630. package/tests/node_modules/dayjs/esm/plugin/isoWeeksInYear/index.js +15 -0
  631. package/tests/node_modules/dayjs/esm/plugin/localeData/index.d.ts +42 -0
  632. package/tests/node_modules/dayjs/esm/plugin/localeData/index.js +114 -0
  633. package/tests/node_modules/dayjs/esm/plugin/localizedFormat/index.d.ts +4 -0
  634. package/tests/node_modules/dayjs/esm/plugin/localizedFormat/index.js +20 -0
  635. package/tests/node_modules/dayjs/esm/plugin/localizedFormat/utils.js +20 -0
  636. package/tests/node_modules/dayjs/esm/plugin/minMax/index.d.ts +11 -0
  637. package/tests/node_modules/dayjs/esm/plugin/minMax/index.js +36 -0
  638. package/tests/node_modules/dayjs/esm/plugin/objectSupport/index.d.ts +12 -0
  639. package/tests/node_modules/dayjs/esm/plugin/objectSupport/index.js +87 -0
  640. package/tests/node_modules/dayjs/esm/plugin/pluralGetSet/index.d.ts +44 -0
  641. package/tests/node_modules/dayjs/esm/plugin/pluralGetSet/index.js +7 -0
  642. package/tests/node_modules/dayjs/esm/plugin/preParsePostFormat/index.d.ts +4 -0
  643. package/tests/node_modules/dayjs/esm/plugin/preParsePostFormat/index.js +40 -0
  644. package/tests/node_modules/dayjs/esm/plugin/quarterOfYear/index.d.ts +26 -0
  645. package/tests/node_modules/dayjs/esm/plugin/quarterOfYear/index.js +41 -0
  646. package/tests/node_modules/dayjs/esm/plugin/relativeTime/index.d.ts +24 -0
  647. package/tests/node_modules/dayjs/esm/plugin/relativeTime/index.js +130 -0
  648. package/tests/node_modules/dayjs/esm/plugin/timezone/index.d.ts +20 -0
  649. package/tests/node_modules/dayjs/esm/plugin/timezone/index.js +185 -0
  650. package/tests/node_modules/dayjs/esm/plugin/toArray/index.d.ts +10 -0
  651. package/tests/node_modules/dayjs/esm/plugin/toArray/index.js +7 -0
  652. package/tests/node_modules/dayjs/esm/plugin/toObject/index.d.ts +20 -0
  653. package/tests/node_modules/dayjs/esm/plugin/toObject/index.js +15 -0
  654. package/tests/node_modules/dayjs/esm/plugin/updateLocale/index.d.ts +8 -0
  655. package/tests/node_modules/dayjs/esm/plugin/updateLocale/index.js +12 -0
  656. package/tests/node_modules/dayjs/esm/plugin/utc/index.d.ts +19 -0
  657. package/tests/node_modules/dayjs/esm/plugin/utc/index.js +188 -0
  658. package/tests/node_modules/dayjs/esm/plugin/weekOfYear/index.d.ts +12 -0
  659. package/tests/node_modules/dayjs/esm/plugin/weekOfYear/index.js +44 -0
  660. package/tests/node_modules/dayjs/esm/plugin/weekYear/index.d.ts +10 -0
  661. package/tests/node_modules/dayjs/esm/plugin/weekYear/index.js +19 -0
  662. package/tests/node_modules/dayjs/esm/plugin/weekday/index.d.ts +12 -0
  663. package/tests/node_modules/dayjs/esm/plugin/weekday/index.js +15 -0
  664. package/tests/node_modules/dayjs/esm/utils.js +58 -0
  665. package/tests/node_modules/dayjs/index.d.ts +429 -0
  666. package/tests/node_modules/dayjs/locale/af.js +1 -0
  667. package/tests/node_modules/dayjs/locale/am.js +1 -0
  668. package/tests/node_modules/dayjs/locale/ar-dz.js +1 -0
  669. package/tests/node_modules/dayjs/locale/ar-iq.js +1 -0
  670. package/tests/node_modules/dayjs/locale/ar-kw.js +1 -0
  671. package/tests/node_modules/dayjs/locale/ar-ly.js +1 -0
  672. package/tests/node_modules/dayjs/locale/ar-ma.js +1 -0
  673. package/tests/node_modules/dayjs/locale/ar-sa.js +1 -0
  674. package/tests/node_modules/dayjs/locale/ar-tn.js +1 -0
  675. package/tests/node_modules/dayjs/locale/ar.js +1 -0
  676. package/tests/node_modules/dayjs/locale/az.js +1 -0
  677. package/tests/node_modules/dayjs/locale/be.js +1 -0
  678. package/tests/node_modules/dayjs/locale/bg.js +1 -0
  679. package/tests/node_modules/dayjs/locale/bi.js +1 -0
  680. package/tests/node_modules/dayjs/locale/bm.js +1 -0
  681. package/tests/node_modules/dayjs/locale/bn-bd.js +1 -0
  682. package/tests/node_modules/dayjs/locale/bn.js +1 -0
  683. package/tests/node_modules/dayjs/locale/bo.js +1 -0
  684. package/tests/node_modules/dayjs/locale/br.js +1 -0
  685. package/tests/node_modules/dayjs/locale/bs.js +1 -0
  686. package/tests/node_modules/dayjs/locale/ca.js +1 -0
  687. package/tests/node_modules/dayjs/locale/cs.js +1 -0
  688. package/tests/node_modules/dayjs/locale/cv.js +1 -0
  689. package/tests/node_modules/dayjs/locale/cy.js +1 -0
  690. package/tests/node_modules/dayjs/locale/da.js +1 -0
  691. package/tests/node_modules/dayjs/locale/de-at.js +1 -0
  692. package/tests/node_modules/dayjs/locale/de-ch.js +1 -0
  693. package/tests/node_modules/dayjs/locale/de.js +1 -0
  694. package/tests/node_modules/dayjs/locale/dv.js +1 -0
  695. package/tests/node_modules/dayjs/locale/el.js +1 -0
  696. package/tests/node_modules/dayjs/locale/en-au.js +1 -0
  697. package/tests/node_modules/dayjs/locale/en-ca.js +1 -0
  698. package/tests/node_modules/dayjs/locale/en-gb.js +1 -0
  699. package/tests/node_modules/dayjs/locale/en-ie.js +1 -0
  700. package/tests/node_modules/dayjs/locale/en-il.js +1 -0
  701. package/tests/node_modules/dayjs/locale/en-in.js +1 -0
  702. package/tests/node_modules/dayjs/locale/en-nz.js +1 -0
  703. package/tests/node_modules/dayjs/locale/en-sg.js +1 -0
  704. package/tests/node_modules/dayjs/locale/en-tt.js +1 -0
  705. package/tests/node_modules/dayjs/locale/en.js +1 -0
  706. package/tests/node_modules/dayjs/locale/eo.js +1 -0
  707. package/tests/node_modules/dayjs/locale/es-do.js +1 -0
  708. package/tests/node_modules/dayjs/locale/es-mx.js +1 -0
  709. package/tests/node_modules/dayjs/locale/es-pr.js +1 -0
  710. package/tests/node_modules/dayjs/locale/es-us.js +1 -0
  711. package/tests/node_modules/dayjs/locale/es.js +1 -0
  712. package/tests/node_modules/dayjs/locale/et.js +1 -0
  713. package/tests/node_modules/dayjs/locale/eu.js +1 -0
  714. package/tests/node_modules/dayjs/locale/fa.js +1 -0
  715. package/tests/node_modules/dayjs/locale/fi.js +1 -0
  716. package/tests/node_modules/dayjs/locale/fo.js +1 -0
  717. package/tests/node_modules/dayjs/locale/fr-ca.js +1 -0
  718. package/tests/node_modules/dayjs/locale/fr-ch.js +1 -0
  719. package/tests/node_modules/dayjs/locale/fr.js +1 -0
  720. package/tests/node_modules/dayjs/locale/fy.js +1 -0
  721. package/tests/node_modules/dayjs/locale/ga.js +1 -0
  722. package/tests/node_modules/dayjs/locale/gd.js +1 -0
  723. package/tests/node_modules/dayjs/locale/gl.js +1 -0
  724. package/tests/node_modules/dayjs/locale/gom-latn.js +1 -0
  725. package/tests/node_modules/dayjs/locale/gu.js +1 -0
  726. package/tests/node_modules/dayjs/locale/he.js +1 -0
  727. package/tests/node_modules/dayjs/locale/hi.js +1 -0
  728. package/tests/node_modules/dayjs/locale/hr.js +1 -0
  729. package/tests/node_modules/dayjs/locale/ht.js +1 -0
  730. package/tests/node_modules/dayjs/locale/hu.js +1 -0
  731. package/tests/node_modules/dayjs/locale/hy-am.js +1 -0
  732. package/tests/node_modules/dayjs/locale/id.js +1 -0
  733. package/tests/node_modules/dayjs/locale/index.d.ts +11 -0
  734. package/tests/node_modules/dayjs/locale/is.js +1 -0
  735. package/tests/node_modules/dayjs/locale/it-ch.js +1 -0
  736. package/tests/node_modules/dayjs/locale/it.js +1 -0
  737. package/tests/node_modules/dayjs/locale/ja.js +1 -0
  738. package/tests/node_modules/dayjs/locale/jv.js +1 -0
  739. package/tests/node_modules/dayjs/locale/ka.js +1 -0
  740. package/tests/node_modules/dayjs/locale/kk.js +1 -0
  741. package/tests/node_modules/dayjs/locale/km.js +1 -0
  742. package/tests/node_modules/dayjs/locale/kn.js +1 -0
  743. package/tests/node_modules/dayjs/locale/ko.js +1 -0
  744. package/tests/node_modules/dayjs/locale/ku.js +1 -0
  745. package/tests/node_modules/dayjs/locale/ky.js +1 -0
  746. package/tests/node_modules/dayjs/locale/lb.js +1 -0
  747. package/tests/node_modules/dayjs/locale/lo.js +1 -0
  748. package/tests/node_modules/dayjs/locale/lt.js +1 -0
  749. package/tests/node_modules/dayjs/locale/lv.js +1 -0
  750. package/tests/node_modules/dayjs/locale/me.js +1 -0
  751. package/tests/node_modules/dayjs/locale/mi.js +1 -0
  752. package/tests/node_modules/dayjs/locale/mk.js +1 -0
  753. package/tests/node_modules/dayjs/locale/ml.js +1 -0
  754. package/tests/node_modules/dayjs/locale/mn.js +1 -0
  755. package/tests/node_modules/dayjs/locale/mr.js +1 -0
  756. package/tests/node_modules/dayjs/locale/ms-my.js +1 -0
  757. package/tests/node_modules/dayjs/locale/ms.js +1 -0
  758. package/tests/node_modules/dayjs/locale/mt.js +1 -0
  759. package/tests/node_modules/dayjs/locale/my.js +1 -0
  760. package/tests/node_modules/dayjs/locale/nb.js +1 -0
  761. package/tests/node_modules/dayjs/locale/ne.js +1 -0
  762. package/tests/node_modules/dayjs/locale/nl-be.js +1 -0
  763. package/tests/node_modules/dayjs/locale/nl.js +1 -0
  764. package/tests/node_modules/dayjs/locale/nn.js +1 -0
  765. package/tests/node_modules/dayjs/locale/oc-lnc.js +1 -0
  766. package/tests/node_modules/dayjs/locale/pa-in.js +1 -0
  767. package/tests/node_modules/dayjs/locale/pl.js +1 -0
  768. package/tests/node_modules/dayjs/locale/pt-br.js +1 -0
  769. package/tests/node_modules/dayjs/locale/pt.js +1 -0
  770. package/tests/node_modules/dayjs/locale/rn.js +1 -0
  771. package/tests/node_modules/dayjs/locale/ro.js +1 -0
  772. package/tests/node_modules/dayjs/locale/ru.js +1 -0
  773. package/tests/node_modules/dayjs/locale/rw.js +1 -0
  774. package/tests/node_modules/dayjs/locale/sd.js +1 -0
  775. package/tests/node_modules/dayjs/locale/se.js +1 -0
  776. package/tests/node_modules/dayjs/locale/si.js +1 -0
  777. package/tests/node_modules/dayjs/locale/sk.js +1 -0
  778. package/tests/node_modules/dayjs/locale/sl.js +1 -0
  779. package/tests/node_modules/dayjs/locale/sq.js +1 -0
  780. package/tests/node_modules/dayjs/locale/sr-cyrl.js +1 -0
  781. package/tests/node_modules/dayjs/locale/sr.js +1 -0
  782. package/tests/node_modules/dayjs/locale/ss.js +1 -0
  783. package/tests/node_modules/dayjs/locale/sv-fi.js +1 -0
  784. package/tests/node_modules/dayjs/locale/sv.js +1 -0
  785. package/tests/node_modules/dayjs/locale/sw.js +1 -0
  786. package/tests/node_modules/dayjs/locale/ta.js +1 -0
  787. package/tests/node_modules/dayjs/locale/te.js +1 -0
  788. package/tests/node_modules/dayjs/locale/tet.js +1 -0
  789. package/tests/node_modules/dayjs/locale/tg.js +1 -0
  790. package/tests/node_modules/dayjs/locale/th.js +1 -0
  791. package/tests/node_modules/dayjs/locale/tk.js +1 -0
  792. package/tests/node_modules/dayjs/locale/tl-ph.js +1 -0
  793. package/tests/node_modules/dayjs/locale/tlh.js +1 -0
  794. package/tests/node_modules/dayjs/locale/tr.js +1 -0
  795. package/tests/node_modules/dayjs/locale/types.d.ts +33 -0
  796. package/tests/node_modules/dayjs/locale/tzl.js +1 -0
  797. package/tests/node_modules/dayjs/locale/tzm-latn.js +1 -0
  798. package/tests/node_modules/dayjs/locale/tzm.js +1 -0
  799. package/tests/node_modules/dayjs/locale/ug-cn.js +1 -0
  800. package/tests/node_modules/dayjs/locale/uk.js +1 -0
  801. package/tests/node_modules/dayjs/locale/ur.js +1 -0
  802. package/tests/node_modules/dayjs/locale/uz-latn.js +1 -0
  803. package/tests/node_modules/dayjs/locale/uz.js +1 -0
  804. package/tests/node_modules/dayjs/locale/vi.js +1 -0
  805. package/tests/node_modules/dayjs/locale/x-pseudo.js +1 -0
  806. package/tests/node_modules/dayjs/locale/yo.js +1 -0
  807. package/tests/node_modules/dayjs/locale/zh-cn.js +1 -0
  808. package/tests/node_modules/dayjs/locale/zh-hk.js +1 -0
  809. package/tests/node_modules/dayjs/locale/zh-tw.js +1 -0
  810. package/tests/node_modules/dayjs/locale/zh.js +1 -0
  811. package/tests/node_modules/dayjs/locale.json +1 -0
  812. package/tests/node_modules/dayjs/package.json +99 -0
  813. package/tests/node_modules/dayjs/plugin/advancedFormat.d.ts +4 -0
  814. package/tests/node_modules/dayjs/plugin/advancedFormat.js +1 -0
  815. package/tests/node_modules/dayjs/plugin/arraySupport.d.ts +10 -0
  816. package/tests/node_modules/dayjs/plugin/arraySupport.js +1 -0
  817. package/tests/node_modules/dayjs/plugin/badMutable.d.ts +4 -0
  818. package/tests/node_modules/dayjs/plugin/badMutable.js +1 -0
  819. package/tests/node_modules/dayjs/plugin/buddhistEra.d.ts +4 -0
  820. package/tests/node_modules/dayjs/plugin/buddhistEra.js +1 -0
  821. package/tests/node_modules/dayjs/plugin/calendar.d.ts +10 -0
  822. package/tests/node_modules/dayjs/plugin/calendar.js +1 -0
  823. package/tests/node_modules/dayjs/plugin/customParseFormat.d.ts +8 -0
  824. package/tests/node_modules/dayjs/plugin/customParseFormat.js +1 -0
  825. package/tests/node_modules/dayjs/plugin/dayOfYear.d.ts +11 -0
  826. package/tests/node_modules/dayjs/plugin/dayOfYear.js +1 -0
  827. package/tests/node_modules/dayjs/plugin/devHelper.d.ts +4 -0
  828. package/tests/node_modules/dayjs/plugin/devHelper.js +1 -0
  829. package/tests/node_modules/dayjs/plugin/duration.d.ts +88 -0
  830. package/tests/node_modules/dayjs/plugin/duration.js +1 -0
  831. package/tests/node_modules/dayjs/plugin/isBetween.d.ts +10 -0
  832. package/tests/node_modules/dayjs/plugin/isBetween.js +1 -0
  833. package/tests/node_modules/dayjs/plugin/isLeapYear.d.ts +10 -0
  834. package/tests/node_modules/dayjs/plugin/isLeapYear.js +1 -0
  835. package/tests/node_modules/dayjs/plugin/isMoment.d.ts +10 -0
  836. package/tests/node_modules/dayjs/plugin/isMoment.js +1 -0
  837. package/tests/node_modules/dayjs/plugin/isSameOrAfter.d.ts +10 -0
  838. package/tests/node_modules/dayjs/plugin/isSameOrAfter.js +1 -0
  839. package/tests/node_modules/dayjs/plugin/isSameOrBefore.d.ts +10 -0
  840. package/tests/node_modules/dayjs/plugin/isSameOrBefore.js +1 -0
  841. package/tests/node_modules/dayjs/plugin/isToday.d.ts +10 -0
  842. package/tests/node_modules/dayjs/plugin/isToday.js +1 -0
  843. package/tests/node_modules/dayjs/plugin/isTomorrow.d.ts +10 -0
  844. package/tests/node_modules/dayjs/plugin/isTomorrow.js +1 -0
  845. package/tests/node_modules/dayjs/plugin/isYesterday.d.ts +10 -0
  846. package/tests/node_modules/dayjs/plugin/isYesterday.js +1 -0
  847. package/tests/node_modules/dayjs/plugin/isoWeek.d.ts +27 -0
  848. package/tests/node_modules/dayjs/plugin/isoWeek.js +1 -0
  849. package/tests/node_modules/dayjs/plugin/isoWeeksInYear.d.ts +10 -0
  850. package/tests/node_modules/dayjs/plugin/isoWeeksInYear.js +1 -0
  851. package/tests/node_modules/dayjs/plugin/localeData.d.ts +42 -0
  852. package/tests/node_modules/dayjs/plugin/localeData.js +1 -0
  853. package/tests/node_modules/dayjs/plugin/localizedFormat.d.ts +4 -0
  854. package/tests/node_modules/dayjs/plugin/localizedFormat.js +1 -0
  855. package/tests/node_modules/dayjs/plugin/minMax.d.ts +11 -0
  856. package/tests/node_modules/dayjs/plugin/minMax.js +1 -0
  857. package/tests/node_modules/dayjs/plugin/objectSupport.d.ts +12 -0
  858. package/tests/node_modules/dayjs/plugin/objectSupport.js +1 -0
  859. package/tests/node_modules/dayjs/plugin/pluralGetSet.d.ts +44 -0
  860. package/tests/node_modules/dayjs/plugin/pluralGetSet.js +1 -0
  861. package/tests/node_modules/dayjs/plugin/preParsePostFormat.d.ts +4 -0
  862. package/tests/node_modules/dayjs/plugin/preParsePostFormat.js +1 -0
  863. package/tests/node_modules/dayjs/plugin/quarterOfYear.d.ts +26 -0
  864. package/tests/node_modules/dayjs/plugin/quarterOfYear.js +1 -0
  865. package/tests/node_modules/dayjs/plugin/relativeTime.d.ts +24 -0
  866. package/tests/node_modules/dayjs/plugin/relativeTime.js +1 -0
  867. package/tests/node_modules/dayjs/plugin/timezone.d.ts +20 -0
  868. package/tests/node_modules/dayjs/plugin/timezone.js +1 -0
  869. package/tests/node_modules/dayjs/plugin/toArray.d.ts +10 -0
  870. package/tests/node_modules/dayjs/plugin/toArray.js +1 -0
  871. package/tests/node_modules/dayjs/plugin/toObject.d.ts +20 -0
  872. package/tests/node_modules/dayjs/plugin/toObject.js +1 -0
  873. package/tests/node_modules/dayjs/plugin/updateLocale.d.ts +8 -0
  874. package/tests/node_modules/dayjs/plugin/updateLocale.js +1 -0
  875. package/tests/node_modules/dayjs/plugin/utc.d.ts +19 -0
  876. package/tests/node_modules/dayjs/plugin/utc.js +1 -0
  877. package/tests/node_modules/dayjs/plugin/weekOfYear.d.ts +12 -0
  878. package/tests/node_modules/dayjs/plugin/weekOfYear.js +1 -0
  879. package/tests/node_modules/dayjs/plugin/weekYear.d.ts +10 -0
  880. package/tests/node_modules/dayjs/plugin/weekYear.js +1 -0
  881. package/tests/node_modules/dayjs/plugin/weekday.d.ts +12 -0
  882. package/tests/node_modules/dayjs/plugin/weekday.js +1 -0
  883. package/tests/node_modules/debug/.coveralls.yml +1 -0
  884. package/tests/node_modules/debug/.eslintrc +11 -0
  885. package/tests/node_modules/debug/.travis.yml +14 -0
  886. package/tests/node_modules/debug/CHANGELOG.md +362 -0
  887. package/tests/node_modules/debug/LICENSE +19 -0
  888. package/tests/node_modules/debug/Makefile +50 -0
  889. package/tests/node_modules/debug/README.md +312 -0
  890. package/tests/node_modules/debug/component.json +19 -0
  891. package/tests/node_modules/debug/karma.conf.js +70 -0
  892. package/tests/node_modules/debug/node.js +1 -0
  893. package/tests/node_modules/debug/package.json +49 -0
  894. package/tests/node_modules/debug/src/browser.js +185 -0
  895. package/tests/node_modules/debug/src/debug.js +202 -0
  896. package/tests/node_modules/debug/src/index.js +10 -0
  897. package/tests/node_modules/debug/src/inspector-log.js +15 -0
  898. package/tests/node_modules/debug/src/node.js +248 -0
  899. package/tests/node_modules/decimal.js/CHANGELOG.md +231 -0
  900. package/tests/node_modules/decimal.js/LICENCE.md +23 -0
  901. package/tests/node_modules/decimal.js/README.md +246 -0
  902. package/tests/node_modules/decimal.js/decimal.d.ts +300 -0
  903. package/tests/node_modules/decimal.js/decimal.js +4934 -0
  904. package/tests/node_modules/decimal.js/decimal.mjs +4898 -0
  905. package/tests/node_modules/decimal.js/package.json +40 -0
  906. package/tests/node_modules/deep-is/.travis.yml +5 -0
  907. package/tests/node_modules/deep-is/LICENSE +22 -0
  908. package/tests/node_modules/deep-is/README.markdown +70 -0
  909. package/tests/node_modules/deep-is/example/cmp.js +11 -0
  910. package/tests/node_modules/deep-is/index.js +102 -0
  911. package/tests/node_modules/deep-is/package.json +58 -0
  912. package/tests/node_modules/deep-is/test/NaN.js +16 -0
  913. package/tests/node_modules/deep-is/test/cmp.js +23 -0
  914. package/tests/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
  915. package/tests/node_modules/delayed-stream/License +19 -0
  916. package/tests/node_modules/delayed-stream/Makefile +7 -0
  917. package/tests/node_modules/delayed-stream/Readme.md +141 -0
  918. package/tests/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  919. package/tests/node_modules/delayed-stream/package.json +27 -0
  920. package/tests/node_modules/depd/History.md +103 -0
  921. package/tests/node_modules/depd/LICENSE +22 -0
  922. package/tests/node_modules/depd/Readme.md +280 -0
  923. package/tests/node_modules/depd/index.js +538 -0
  924. package/tests/node_modules/depd/lib/browser/index.js +77 -0
  925. package/tests/node_modules/depd/package.json +45 -0
  926. package/tests/node_modules/destroy/LICENSE +23 -0
  927. package/tests/node_modules/destroy/README.md +63 -0
  928. package/tests/node_modules/destroy/index.js +209 -0
  929. package/tests/node_modules/destroy/package.json +48 -0
  930. package/tests/node_modules/dev-null/.travis.yml +4 -0
  931. package/tests/node_modules/dev-null/LICENSE +23 -0
  932. package/tests/node_modules/dev-null/README.md +38 -0
  933. package/tests/node_modules/dev-null/examples/devnull.js +6 -0
  934. package/tests/node_modules/dev-null/examples/no-devnull.js +4 -0
  935. package/tests/node_modules/dev-null/index.js +22 -0
  936. package/tests/node_modules/dev-null/package.json +42 -0
  937. package/tests/node_modules/dev-null/test/fixtures/number-readable.js +21 -0
  938. package/tests/node_modules/dev-null/test/index.js +28 -0
  939. package/tests/node_modules/domexception/LICENSE.txt +21 -0
  940. package/tests/node_modules/domexception/README.md +31 -0
  941. package/tests/node_modules/domexception/index.js +7 -0
  942. package/tests/node_modules/domexception/lib/DOMException-impl.js +22 -0
  943. package/tests/node_modules/domexception/lib/DOMException.js +205 -0
  944. package/tests/node_modules/domexception/lib/legacy-error-codes.json +27 -0
  945. package/tests/node_modules/domexception/lib/utils.js +115 -0
  946. package/tests/node_modules/domexception/node_modules/webidl-conversions/LICENSE.md +12 -0
  947. package/tests/node_modules/domexception/node_modules/webidl-conversions/README.md +79 -0
  948. package/tests/node_modules/domexception/node_modules/webidl-conversions/lib/index.js +361 -0
  949. package/tests/node_modules/domexception/node_modules/webidl-conversions/package.json +30 -0
  950. package/tests/node_modules/domexception/package.json +42 -0
  951. package/tests/node_modules/domexception/webidl2js-wrapper.js +15 -0
  952. package/tests/node_modules/ee-first/LICENSE +22 -0
  953. package/tests/node_modules/ee-first/README.md +80 -0
  954. package/tests/node_modules/ee-first/index.js +95 -0
  955. package/tests/node_modules/ee-first/package.json +29 -0
  956. package/tests/node_modules/encodeurl/HISTORY.md +14 -0
  957. package/tests/node_modules/encodeurl/LICENSE +22 -0
  958. package/tests/node_modules/encodeurl/README.md +128 -0
  959. package/tests/node_modules/encodeurl/index.js +60 -0
  960. package/tests/node_modules/encodeurl/package.json +40 -0
  961. package/tests/node_modules/errors/History.md +4 -0
  962. package/tests/node_modules/errors/LICENSE +22 -0
  963. package/tests/node_modules/errors/Makefile +20 -0
  964. package/tests/node_modules/errors/Readme.md +503 -0
  965. package/tests/node_modules/errors/doc/html/errors.html +298 -0
  966. package/tests/node_modules/errors/doc/md/errors.md +495 -0
  967. package/tests/node_modules/errors/examples/basic/usage.js +120 -0
  968. package/tests/node_modules/errors/examples/express/echo.js +37 -0
  969. package/tests/node_modules/errors/examples/express/mapper.js +42 -0
  970. package/tests/node_modules/errors/examples/express/middleware.js +47 -0
  971. package/tests/node_modules/errors/index.js +2 -0
  972. package/tests/node_modules/errors/lib/errors.js +930 -0
  973. package/tests/node_modules/errors/lib/static/error.css +68 -0
  974. package/tests/node_modules/errors/lib/static/error.html +15 -0
  975. package/tests/node_modules/errors/package.json +36 -0
  976. package/tests/node_modules/errors/test/express.js +200 -0
  977. package/tests/node_modules/errors/test/middleware.js +135 -0
  978. package/tests/node_modules/errors/test/test.js +250 -0
  979. package/tests/node_modules/escape-html/LICENSE +24 -0
  980. package/tests/node_modules/escape-html/Readme.md +43 -0
  981. package/tests/node_modules/escape-html/index.js +78 -0
  982. package/tests/node_modules/escape-html/package.json +24 -0
  983. package/tests/node_modules/escodegen/LICENSE.BSD +21 -0
  984. package/tests/node_modules/escodegen/README.md +84 -0
  985. package/tests/node_modules/escodegen/bin/escodegen.js +77 -0
  986. package/tests/node_modules/escodegen/bin/esgenerate.js +64 -0
  987. package/tests/node_modules/escodegen/escodegen.js +2647 -0
  988. package/tests/node_modules/escodegen/package.json +62 -0
  989. package/tests/node_modules/esprima/ChangeLog +235 -0
  990. package/tests/node_modules/esprima/LICENSE.BSD +21 -0
  991. package/tests/node_modules/esprima/README.md +46 -0
  992. package/tests/node_modules/esprima/bin/esparse.js +139 -0
  993. package/tests/node_modules/esprima/bin/esvalidate.js +236 -0
  994. package/tests/node_modules/esprima/dist/esprima.js +6709 -0
  995. package/tests/node_modules/esprima/package.json +112 -0
  996. package/tests/node_modules/estraverse/.jshintrc +16 -0
  997. package/tests/node_modules/estraverse/LICENSE.BSD +19 -0
  998. package/tests/node_modules/estraverse/README.md +153 -0
  999. package/tests/node_modules/estraverse/estraverse.js +805 -0
  1000. package/tests/node_modules/estraverse/gulpfile.js +70 -0
  1001. package/tests/node_modules/estraverse/package.json +40 -0
  1002. package/tests/node_modules/esutils/LICENSE.BSD +19 -0
  1003. package/tests/node_modules/esutils/README.md +174 -0
  1004. package/tests/node_modules/esutils/lib/ast.js +144 -0
  1005. package/tests/node_modules/esutils/lib/code.js +135 -0
  1006. package/tests/node_modules/esutils/lib/keyword.js +165 -0
  1007. package/tests/node_modules/esutils/lib/utils.js +33 -0
  1008. package/tests/node_modules/esutils/package.json +44 -0
  1009. package/tests/node_modules/etag/HISTORY.md +83 -0
  1010. package/tests/node_modules/etag/LICENSE +22 -0
  1011. package/tests/node_modules/etag/README.md +159 -0
  1012. package/tests/node_modules/etag/index.js +131 -0
  1013. package/tests/node_modules/etag/package.json +47 -0
  1014. package/tests/node_modules/express/History.md +3579 -0
  1015. package/tests/node_modules/express/LICENSE +24 -0
  1016. package/tests/node_modules/express/Readme.md +166 -0
  1017. package/tests/node_modules/express/index.js +11 -0
  1018. package/tests/node_modules/express/lib/application.js +661 -0
  1019. package/tests/node_modules/express/lib/express.js +116 -0
  1020. package/tests/node_modules/express/lib/middleware/init.js +43 -0
  1021. package/tests/node_modules/express/lib/middleware/query.js +47 -0
  1022. package/tests/node_modules/express/lib/request.js +525 -0
  1023. package/tests/node_modules/express/lib/response.js +1169 -0
  1024. package/tests/node_modules/express/lib/router/index.js +673 -0
  1025. package/tests/node_modules/express/lib/router/layer.js +181 -0
  1026. package/tests/node_modules/express/lib/router/route.js +225 -0
  1027. package/tests/node_modules/express/lib/utils.js +304 -0
  1028. package/tests/node_modules/express/lib/view.js +182 -0
  1029. package/tests/node_modules/express/node_modules/safe-buffer/LICENSE +21 -0
  1030. package/tests/node_modules/express/node_modules/safe-buffer/README.md +584 -0
  1031. package/tests/node_modules/express/node_modules/safe-buffer/index.d.ts +187 -0
  1032. package/tests/node_modules/express/node_modules/safe-buffer/index.js +65 -0
  1033. package/tests/node_modules/express/node_modules/safe-buffer/package.json +51 -0
  1034. package/tests/node_modules/express/package.json +99 -0
  1035. package/tests/node_modules/extend/.editorconfig +20 -0
  1036. package/tests/node_modules/extend/.eslintrc +18 -0
  1037. package/tests/node_modules/extend/.jscs.json +175 -0
  1038. package/tests/node_modules/extend/.travis.yml +230 -0
  1039. package/tests/node_modules/extend/CHANGELOG.md +94 -0
  1040. package/tests/node_modules/extend/LICENSE +23 -0
  1041. package/tests/node_modules/extend/README.md +81 -0
  1042. package/tests/node_modules/extend/component.json +32 -0
  1043. package/tests/node_modules/extend/index.js +119 -0
  1044. package/tests/node_modules/extend/package.json +44 -0
  1045. package/tests/node_modules/fast-levenshtein/LICENSE.md +25 -0
  1046. package/tests/node_modules/fast-levenshtein/README.md +104 -0
  1047. package/tests/node_modules/fast-levenshtein/levenshtein.js +136 -0
  1048. package/tests/node_modules/fast-levenshtein/package.json +39 -0
  1049. package/tests/node_modules/finalhandler/HISTORY.md +195 -0
  1050. package/tests/node_modules/finalhandler/LICENSE +22 -0
  1051. package/tests/node_modules/finalhandler/README.md +147 -0
  1052. package/tests/node_modules/finalhandler/SECURITY.md +25 -0
  1053. package/tests/node_modules/finalhandler/index.js +336 -0
  1054. package/tests/node_modules/finalhandler/package.json +46 -0
  1055. package/tests/node_modules/form-data/License +19 -0
  1056. package/tests/node_modules/form-data/README.md.bak +358 -0
  1057. package/tests/node_modules/form-data/Readme.md +358 -0
  1058. package/tests/node_modules/form-data/index.d.ts +62 -0
  1059. package/tests/node_modules/form-data/lib/browser.js +2 -0
  1060. package/tests/node_modules/form-data/lib/form_data.js +501 -0
  1061. package/tests/node_modules/form-data/lib/populate.js +10 -0
  1062. package/tests/node_modules/form-data/package.json +68 -0
  1063. package/tests/node_modules/form-data2/.babelrc.json +5 -0
  1064. package/tests/node_modules/form-data2/.browserslistrc +1 -0
  1065. package/tests/node_modules/form-data2/.eslintrc +3 -0
  1066. package/tests/node_modules/form-data2/README.md +146 -0
  1067. package/tests/node_modules/form-data2/index.js +3 -0
  1068. package/tests/node_modules/form-data2/lib/form-data2.js +260 -0
  1069. package/tests/node_modules/form-data2/package.json +33 -0
  1070. package/tests/node_modules/form-data2/src/form-data2.js +174 -0
  1071. package/tests/node_modules/form-fix-array/README.md +49 -0
  1072. package/tests/node_modules/form-fix-array/gulpfile.js +28 -0
  1073. package/tests/node_modules/form-fix-array/index.coffee +1 -0
  1074. package/tests/node_modules/form-fix-array/index.js +1 -0
  1075. package/tests/node_modules/form-fix-array/lib/form-fix-array.coffee +17 -0
  1076. package/tests/node_modules/form-fix-array/lib/form-fix-array.js +27 -0
  1077. package/tests/node_modules/form-fix-array/package.json +32 -0
  1078. package/tests/node_modules/forwarded/HISTORY.md +21 -0
  1079. package/tests/node_modules/forwarded/LICENSE +22 -0
  1080. package/tests/node_modules/forwarded/README.md +57 -0
  1081. package/tests/node_modules/forwarded/index.js +90 -0
  1082. package/tests/node_modules/forwarded/package.json +45 -0
  1083. package/tests/node_modules/fresh/HISTORY.md +70 -0
  1084. package/tests/node_modules/fresh/LICENSE +23 -0
  1085. package/tests/node_modules/fresh/README.md +119 -0
  1086. package/tests/node_modules/fresh/index.js +137 -0
  1087. package/tests/node_modules/fresh/package.json +46 -0
  1088. package/tests/node_modules/function-bind/.editorconfig +20 -0
  1089. package/tests/node_modules/function-bind/.eslintrc +15 -0
  1090. package/tests/node_modules/function-bind/.jscs.json +176 -0
  1091. package/tests/node_modules/function-bind/.travis.yml +168 -0
  1092. package/tests/node_modules/function-bind/LICENSE +20 -0
  1093. package/tests/node_modules/function-bind/README.md +48 -0
  1094. package/tests/node_modules/function-bind/implementation.js +52 -0
  1095. package/tests/node_modules/function-bind/index.js +5 -0
  1096. package/tests/node_modules/function-bind/package.json +63 -0
  1097. package/tests/node_modules/function-bind/test/.eslintrc +9 -0
  1098. package/tests/node_modules/function-bind/test/index.js +252 -0
  1099. package/tests/node_modules/get-intrinsic/.eslintrc +37 -0
  1100. package/tests/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  1101. package/tests/node_modules/get-intrinsic/.nycrc +9 -0
  1102. package/tests/node_modules/get-intrinsic/CHANGELOG.md +91 -0
  1103. package/tests/node_modules/get-intrinsic/LICENSE +21 -0
  1104. package/tests/node_modules/get-intrinsic/README.md +71 -0
  1105. package/tests/node_modules/get-intrinsic/index.js +334 -0
  1106. package/tests/node_modules/get-intrinsic/package.json +88 -0
  1107. package/tests/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  1108. package/tests/node_modules/has/LICENSE-MIT +22 -0
  1109. package/tests/node_modules/has/README.md +18 -0
  1110. package/tests/node_modules/has/package.json +48 -0
  1111. package/tests/node_modules/has/src/index.js +5 -0
  1112. package/tests/node_modules/has/test/index.js +10 -0
  1113. package/tests/node_modules/has-symbols/.eslintrc +11 -0
  1114. package/tests/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  1115. package/tests/node_modules/has-symbols/.nycrc +9 -0
  1116. package/tests/node_modules/has-symbols/CHANGELOG.md +75 -0
  1117. package/tests/node_modules/has-symbols/LICENSE +21 -0
  1118. package/tests/node_modules/has-symbols/README.md +46 -0
  1119. package/tests/node_modules/has-symbols/index.js +13 -0
  1120. package/tests/node_modules/has-symbols/package.json +101 -0
  1121. package/tests/node_modules/has-symbols/shams.js +42 -0
  1122. package/tests/node_modules/has-symbols/test/index.js +22 -0
  1123. package/tests/node_modules/has-symbols/test/shams/core-js.js +28 -0
  1124. package/tests/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
  1125. package/tests/node_modules/has-symbols/test/tests.js +56 -0
  1126. package/tests/node_modules/html-encoding-sniffer/LICENSE.txt +7 -0
  1127. package/tests/node_modules/html-encoding-sniffer/README.md +38 -0
  1128. package/tests/node_modules/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
  1129. package/tests/node_modules/html-encoding-sniffer/package.json +30 -0
  1130. package/tests/node_modules/http-errors/HISTORY.md +180 -0
  1131. package/tests/node_modules/http-errors/LICENSE +23 -0
  1132. package/tests/node_modules/http-errors/README.md +169 -0
  1133. package/tests/node_modules/http-errors/index.js +289 -0
  1134. package/tests/node_modules/http-errors/package.json +50 -0
  1135. package/tests/node_modules/http-proxy-agent/README.md +74 -0
  1136. package/tests/node_modules/http-proxy-agent/dist/agent.d.ts +32 -0
  1137. package/tests/node_modules/http-proxy-agent/dist/agent.js +145 -0
  1138. package/tests/node_modules/http-proxy-agent/dist/agent.js.map +1 -0
  1139. package/tests/node_modules/http-proxy-agent/dist/index.d.ts +21 -0
  1140. package/tests/node_modules/http-proxy-agent/dist/index.js +14 -0
  1141. package/tests/node_modules/http-proxy-agent/dist/index.js.map +1 -0
  1142. package/tests/node_modules/http-proxy-agent/node_modules/debug/LICENSE +20 -0
  1143. package/tests/node_modules/http-proxy-agent/node_modules/debug/README.md +481 -0
  1144. package/tests/node_modules/http-proxy-agent/node_modules/debug/package.json +59 -0
  1145. package/tests/node_modules/http-proxy-agent/node_modules/debug/src/browser.js +269 -0
  1146. package/tests/node_modules/http-proxy-agent/node_modules/debug/src/common.js +274 -0
  1147. package/tests/node_modules/http-proxy-agent/node_modules/debug/src/index.js +10 -0
  1148. package/tests/node_modules/http-proxy-agent/node_modules/debug/src/node.js +263 -0
  1149. package/tests/node_modules/http-proxy-agent/node_modules/ms/index.js +162 -0
  1150. package/tests/node_modules/http-proxy-agent/node_modules/ms/license.md +21 -0
  1151. package/tests/node_modules/http-proxy-agent/node_modules/ms/package.json +37 -0
  1152. package/tests/node_modules/http-proxy-agent/node_modules/ms/readme.md +60 -0
  1153. package/tests/node_modules/http-proxy-agent/package.json +57 -0
  1154. package/tests/node_modules/https-proxy-agent/README.md +137 -0
  1155. package/tests/node_modules/https-proxy-agent/dist/agent.d.ts +30 -0
  1156. package/tests/node_modules/https-proxy-agent/dist/agent.js +177 -0
  1157. package/tests/node_modules/https-proxy-agent/dist/agent.js.map +1 -0
  1158. package/tests/node_modules/https-proxy-agent/dist/index.d.ts +23 -0
  1159. package/tests/node_modules/https-proxy-agent/dist/index.js +14 -0
  1160. package/tests/node_modules/https-proxy-agent/dist/index.js.map +1 -0
  1161. package/tests/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
  1162. package/tests/node_modules/https-proxy-agent/dist/parse-proxy-response.js +66 -0
  1163. package/tests/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
  1164. package/tests/node_modules/https-proxy-agent/node_modules/debug/LICENSE +20 -0
  1165. package/tests/node_modules/https-proxy-agent/node_modules/debug/README.md +481 -0
  1166. package/tests/node_modules/https-proxy-agent/node_modules/debug/package.json +59 -0
  1167. package/tests/node_modules/https-proxy-agent/node_modules/debug/src/browser.js +269 -0
  1168. package/tests/node_modules/https-proxy-agent/node_modules/debug/src/common.js +274 -0
  1169. package/tests/node_modules/https-proxy-agent/node_modules/debug/src/index.js +10 -0
  1170. package/tests/node_modules/https-proxy-agent/node_modules/debug/src/node.js +263 -0
  1171. package/tests/node_modules/https-proxy-agent/node_modules/ms/index.js +162 -0
  1172. package/tests/node_modules/https-proxy-agent/node_modules/ms/license.md +21 -0
  1173. package/tests/node_modules/https-proxy-agent/node_modules/ms/package.json +37 -0
  1174. package/tests/node_modules/https-proxy-agent/node_modules/ms/readme.md +60 -0
  1175. package/tests/node_modules/https-proxy-agent/package.json +56 -0
  1176. package/tests/node_modules/iconv-lite/Changelog.md +162 -0
  1177. package/tests/node_modules/iconv-lite/LICENSE +21 -0
  1178. package/tests/node_modules/iconv-lite/README.md +156 -0
  1179. package/tests/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  1180. package/tests/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  1181. package/tests/node_modules/iconv-lite/encodings/index.js +22 -0
  1182. package/tests/node_modules/iconv-lite/encodings/internal.js +188 -0
  1183. package/tests/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  1184. package/tests/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  1185. package/tests/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
  1186. package/tests/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1187. package/tests/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1188. package/tests/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1189. package/tests/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1190. package/tests/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1191. package/tests/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1192. package/tests/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  1193. package/tests/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1194. package/tests/node_modules/iconv-lite/encodings/utf16.js +177 -0
  1195. package/tests/node_modules/iconv-lite/encodings/utf7.js +290 -0
  1196. package/tests/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  1197. package/tests/node_modules/iconv-lite/lib/extend-node.js +217 -0
  1198. package/tests/node_modules/iconv-lite/lib/index.d.ts +24 -0
  1199. package/tests/node_modules/iconv-lite/lib/index.js +153 -0
  1200. package/tests/node_modules/iconv-lite/lib/streams.js +121 -0
  1201. package/tests/node_modules/iconv-lite/package.json +46 -0
  1202. package/tests/node_modules/inherits/LICENSE +16 -0
  1203. package/tests/node_modules/inherits/README.md +42 -0
  1204. package/tests/node_modules/inherits/inherits.js +9 -0
  1205. package/tests/node_modules/inherits/inherits_browser.js +27 -0
  1206. package/tests/node_modules/inherits/package.json +29 -0
  1207. package/tests/node_modules/ipaddr.js/LICENSE +19 -0
  1208. package/tests/node_modules/ipaddr.js/README.md +233 -0
  1209. package/tests/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  1210. package/tests/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  1211. package/tests/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  1212. package/tests/node_modules/ipaddr.js/package.json +35 -0
  1213. package/tests/node_modules/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
  1214. package/tests/node_modules/is-potential-custom-element-name/README.md +40 -0
  1215. package/tests/node_modules/is-potential-custom-element-name/index.js +9 -0
  1216. package/tests/node_modules/is-potential-custom-element-name/package.json +35 -0
  1217. package/tests/node_modules/isarray/.travis.yml +4 -0
  1218. package/tests/node_modules/isarray/Makefile +6 -0
  1219. package/tests/node_modules/isarray/README.md +60 -0
  1220. package/tests/node_modules/isarray/component.json +19 -0
  1221. package/tests/node_modules/isarray/index.js +5 -0
  1222. package/tests/node_modules/isarray/package.json +45 -0
  1223. package/tests/node_modules/isarray/test.js +20 -0
  1224. package/tests/node_modules/jsdom/LICENSE.txt +22 -0
  1225. package/tests/node_modules/jsdom/README.md +522 -0
  1226. package/tests/node_modules/jsdom/lib/api.js +333 -0
  1227. package/tests/node_modules/jsdom/lib/jsdom/browser/Window.js +930 -0
  1228. package/tests/node_modules/jsdom/lib/jsdom/browser/default-stylesheet.js +789 -0
  1229. package/tests/node_modules/jsdom/lib/jsdom/browser/js-globals.json +307 -0
  1230. package/tests/node_modules/jsdom/lib/jsdom/browser/not-implemented.js +13 -0
  1231. package/tests/node_modules/jsdom/lib/jsdom/browser/parser/html.js +223 -0
  1232. package/tests/node_modules/jsdom/lib/jsdom/browser/parser/index.js +37 -0
  1233. package/tests/node_modules/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
  1234. package/tests/node_modules/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
  1235. package/tests/node_modules/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
  1236. package/tests/node_modules/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +95 -0
  1237. package/tests/node_modules/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
  1238. package/tests/node_modules/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
  1239. package/tests/node_modules/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
  1240. package/tests/node_modules/jsdom/lib/jsdom/level2/style.js +57 -0
  1241. package/tests/node_modules/jsdom/lib/jsdom/level3/xpath.js +1874 -0
  1242. package/tests/node_modules/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
  1243. package/tests/node_modules/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +55 -0
  1244. package/tests/node_modules/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
  1245. package/tests/node_modules/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
  1246. package/tests/node_modules/jsdom/lib/jsdom/living/attributes.js +312 -0
  1247. package/tests/node_modules/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
  1248. package/tests/node_modules/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
  1249. package/tests/node_modules/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
  1250. package/tests/node_modules/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +265 -0
  1251. package/tests/node_modules/jsdom/lib/jsdom/living/documents.js +15 -0
  1252. package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +58 -0
  1253. package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +29 -0
  1254. package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
  1255. package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
  1256. package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/serialization.js +45 -0
  1257. package/tests/node_modules/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
  1258. package/tests/node_modules/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
  1259. package/tests/node_modules/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
  1260. package/tests/node_modules/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
  1261. package/tests/node_modules/jsdom/lib/jsdom/living/events/Event-impl.js +197 -0
  1262. package/tests/node_modules/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +18 -0
  1263. package/tests/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js +403 -0
  1264. package/tests/node_modules/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
  1265. package/tests/node_modules/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
  1266. package/tests/node_modules/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
  1267. package/tests/node_modules/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
  1268. package/tests/node_modules/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
  1269. package/tests/node_modules/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +49 -0
  1270. package/tests/node_modules/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
  1271. package/tests/node_modules/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
  1272. package/tests/node_modules/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
  1273. package/tests/node_modules/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
  1274. package/tests/node_modules/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
  1275. package/tests/node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js +59 -0
  1276. package/tests/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
  1277. package/tests/node_modules/jsdom/lib/jsdom/living/fetch/Headers-impl.js +165 -0
  1278. package/tests/node_modules/jsdom/lib/jsdom/living/fetch/header-list.js +54 -0
  1279. package/tests/node_modules/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
  1280. package/tests/node_modules/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
  1281. package/tests/node_modules/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
  1282. package/tests/node_modules/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
  1283. package/tests/node_modules/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
  1284. package/tests/node_modules/jsdom/lib/jsdom/living/generated/AbortController.js +130 -0
  1285. package/tests/node_modules/jsdom/lib/jsdom/living/generated/AbortSignal.js +159 -0
  1286. package/tests/node_modules/jsdom/lib/jsdom/living/generated/AbstractRange.js +162 -0
  1287. package/tests/node_modules/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +44 -0
  1288. package/tests/node_modules/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
  1289. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Attr.js +215 -0
  1290. package/tests/node_modules/jsdom/lib/jsdom/living/generated/BarProp.js +118 -0
  1291. package/tests/node_modules/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
  1292. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Blob.js +198 -0
  1293. package/tests/node_modules/jsdom/lib/jsdom/living/generated/BlobCallback.js +34 -0
  1294. package/tests/node_modules/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
  1295. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CDATASection.js +114 -0
  1296. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
  1297. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CharacterData.js +436 -0
  1298. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CloseEvent.js +164 -0
  1299. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CloseEventInit.js +56 -0
  1300. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Comment.js +122 -0
  1301. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CompositionEvent.js +217 -0
  1302. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
  1303. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +38 -0
  1304. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +242 -0
  1305. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomEvent.js +200 -0
  1306. package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
  1307. package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMImplementation.js +232 -0
  1308. package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
  1309. package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMStringMap.js +322 -0
  1310. package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMTokenList.js +531 -0
  1311. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Document.js +3322 -0
  1312. package/tests/node_modules/jsdom/lib/jsdom/living/generated/DocumentFragment.js +325 -0
  1313. package/tests/node_modules/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
  1314. package/tests/node_modules/jsdom/lib/jsdom/living/generated/DocumentType.js +246 -0
  1315. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Element.js +1609 -0
  1316. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
  1317. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +26 -0
  1318. package/tests/node_modules/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
  1319. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ErrorEvent.js +186 -0
  1320. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +80 -0
  1321. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Event.js +390 -0
  1322. package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +40 -0
  1323. package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventInit.js +52 -0
  1324. package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
  1325. package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
  1326. package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventModifierInit.js +188 -0
  1327. package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js +252 -0
  1328. package/tests/node_modules/jsdom/lib/jsdom/living/generated/External.js +129 -0
  1329. package/tests/node_modules/jsdom/lib/jsdom/living/generated/File.js +176 -0
  1330. package/tests/node_modules/jsdom/lib/jsdom/living/generated/FileList.js +305 -0
  1331. package/tests/node_modules/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +30 -0
  1332. package/tests/node_modules/jsdom/lib/jsdom/living/generated/FileReader.js +440 -0
  1333. package/tests/node_modules/jsdom/lib/jsdom/living/generated/FocusEvent.js +142 -0
  1334. package/tests/node_modules/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
  1335. package/tests/node_modules/jsdom/lib/jsdom/living/generated/FormData.js +421 -0
  1336. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Function.js +46 -0
  1337. package/tests/node_modules/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +28 -0
  1338. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +915 -0
  1339. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +739 -0
  1340. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +115 -0
  1341. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
  1342. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +188 -0
  1343. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +808 -0
  1344. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +487 -0
  1345. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +291 -0
  1346. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLCollection.js +358 -0
  1347. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
  1348. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
  1349. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +128 -0
  1350. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
  1351. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
  1352. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
  1353. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
  1354. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLElement.js +2269 -0
  1355. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +346 -0
  1356. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +315 -0
  1357. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +226 -0
  1358. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +457 -0
  1359. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +459 -0
  1360. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +683 -0
  1361. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +300 -0
  1362. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +115 -0
  1363. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
  1364. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
  1365. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +621 -0
  1366. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +789 -0
  1367. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1696 -0
  1368. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +194 -0
  1369. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +175 -0
  1370. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +164 -0
  1371. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +496 -0
  1372. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +166 -0
  1373. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +509 -0
  1374. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +802 -0
  1375. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
  1376. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +261 -0
  1377. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +338 -0
  1378. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLModElement.js +202 -0
  1379. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +266 -0
  1380. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +839 -0
  1381. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +192 -0
  1382. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +351 -0
  1383. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +533 -0
  1384. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +371 -0
  1385. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
  1386. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +261 -0
  1387. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +115 -0
  1388. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +158 -0
  1389. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +209 -0
  1390. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +166 -0
  1391. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +424 -0
  1392. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +957 -0
  1393. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +188 -0
  1394. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +310 -0
  1395. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +115 -0
  1396. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +200 -0
  1397. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
  1398. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +635 -0
  1399. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +339 -0
  1400. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +725 -0
  1401. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +386 -0
  1402. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +329 -0
  1403. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +126 -0
  1404. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1088 -0
  1405. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
  1406. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
  1407. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +334 -0
  1408. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +192 -0
  1409. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +114 -0
  1410. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +310 -0
  1411. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +153 -0
  1412. package/tests/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +44 -0
  1413. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Headers.js +379 -0
  1414. package/tests/node_modules/jsdom/lib/jsdom/living/generated/History.js +256 -0
  1415. package/tests/node_modules/jsdom/lib/jsdom/living/generated/InputEvent.js +164 -0
  1416. package/tests/node_modules/jsdom/lib/jsdom/living/generated/InputEventInit.js +59 -0
  1417. package/tests/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +413 -0
  1418. package/tests/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +104 -0
  1419. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Location.js +370 -0
  1420. package/tests/node_modules/jsdom/lib/jsdom/living/generated/MessageEvent.js +301 -0
  1421. package/tests/node_modules/jsdom/lib/jsdom/living/generated/MessageEventInit.js +94 -0
  1422. package/tests/node_modules/jsdom/lib/jsdom/living/generated/MimeType.js +151 -0
  1423. package/tests/node_modules/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +330 -0
  1424. package/tests/node_modules/jsdom/lib/jsdom/living/generated/MouseEvent.js +463 -0
  1425. package/tests/node_modules/jsdom/lib/jsdom/living/generated/MouseEventInit.js +108 -0
  1426. package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationCallback.js +38 -0
  1427. package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationObserver.js +171 -0
  1428. package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +103 -0
  1429. package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationRecord.js +216 -0
  1430. package/tests/node_modules/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +522 -0
  1431. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Navigator.js +297 -0
  1432. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Node.js +736 -0
  1433. package/tests/node_modules/jsdom/lib/jsdom/living/generated/NodeFilter.js +74 -0
  1434. package/tests/node_modules/jsdom/lib/jsdom/living/generated/NodeIterator.js +196 -0
  1435. package/tests/node_modules/jsdom/lib/jsdom/living/generated/NodeList.js +309 -0
  1436. package/tests/node_modules/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +46 -0
  1437. package/tests/node_modules/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +60 -0
  1438. package/tests/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +146 -0
  1439. package/tests/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +32 -0
  1440. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Performance.js +145 -0
  1441. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Plugin.js +361 -0
  1442. package/tests/node_modules/jsdom/lib/jsdom/living/generated/PluginArray.js +340 -0
  1443. package/tests/node_modules/jsdom/lib/jsdom/living/generated/PopStateEvent.js +142 -0
  1444. package/tests/node_modules/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
  1445. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +125 -0
  1446. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ProgressEvent.js +166 -0
  1447. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +56 -0
  1448. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Range.js +619 -0
  1449. package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +143 -0
  1450. package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
  1451. package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGElement.js +1986 -0
  1452. package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +144 -0
  1453. package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGNumber.js +130 -0
  1454. package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +681 -0
  1455. package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGStringList.js +504 -0
  1456. package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +114 -0
  1457. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Screen.js +173 -0
  1458. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
  1459. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
  1460. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +12 -0
  1461. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
  1462. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
  1463. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Selection.js +527 -0
  1464. package/tests/node_modules/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
  1465. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ShadowRoot.js +185 -0
  1466. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
  1467. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
  1468. package/tests/node_modules/jsdom/lib/jsdom/living/generated/StaticRange.js +126 -0
  1469. package/tests/node_modules/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +66 -0
  1470. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Storage.js +389 -0
  1471. package/tests/node_modules/jsdom/lib/jsdom/living/generated/StorageEvent.js +305 -0
  1472. package/tests/node_modules/jsdom/lib/jsdom/living/generated/StorageEventInit.js +93 -0
  1473. package/tests/node_modules/jsdom/lib/jsdom/living/generated/StyleSheetList.js +307 -0
  1474. package/tests/node_modules/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
  1475. package/tests/node_modules/jsdom/lib/jsdom/living/generated/Text.js +169 -0
  1476. package/tests/node_modules/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
  1477. package/tests/node_modules/jsdom/lib/jsdom/living/generated/TouchEvent.js +208 -0
  1478. package/tests/node_modules/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
  1479. package/tests/node_modules/jsdom/lib/jsdom/living/generated/TreeWalker.js +236 -0
  1480. package/tests/node_modules/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
  1481. package/tests/node_modules/jsdom/lib/jsdom/living/generated/UIEventInit.js +59 -0
  1482. package/tests/node_modules/jsdom/lib/jsdom/living/generated/ValidityState.js +228 -0
  1483. package/tests/node_modules/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
  1484. package/tests/node_modules/jsdom/lib/jsdom/living/generated/VoidFunction.js +30 -0
  1485. package/tests/node_modules/jsdom/lib/jsdom/living/generated/WebSocket.js +444 -0
  1486. package/tests/node_modules/jsdom/lib/jsdom/living/generated/WheelEvent.js +183 -0
  1487. package/tests/node_modules/jsdom/lib/jsdom/living/generated/WheelEventInit.js +68 -0
  1488. package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLDocument.js +114 -0
  1489. package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +617 -0
  1490. package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +341 -0
  1491. package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +12 -0
  1492. package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +114 -0
  1493. package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLSerializer.js +133 -0
  1494. package/tests/node_modules/jsdom/lib/jsdom/living/generated/utils.js +141 -0
  1495. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/agent-factory.js +15 -0
  1496. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
  1497. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/create-element.js +320 -0
  1498. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
  1499. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/custom-elements.js +270 -0
  1500. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
  1501. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/details.js +15 -0
  1502. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/document-base-url.js +54 -0
  1503. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/events.js +24 -0
  1504. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
  1505. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/form-controls.js +306 -0
  1506. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
  1507. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/http-request.js +254 -0
  1508. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
  1509. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
  1510. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/json.js +12 -0
  1511. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
  1512. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/namespaces.js +15 -0
  1513. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/node.js +68 -0
  1514. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
  1515. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
  1516. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +76 -0
  1517. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/selectors.js +47 -0
  1518. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
  1519. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/strings.js +148 -0
  1520. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/style-rules.js +114 -0
  1521. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/stylesheets.js +113 -0
  1522. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
  1523. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
  1524. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/text.js +19 -0
  1525. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
  1526. package/tests/node_modules/jsdom/lib/jsdom/living/helpers/validate-names.js +75 -0
  1527. package/tests/node_modules/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +25 -0
  1528. package/tests/node_modules/jsdom/lib/jsdom/living/interfaces.js +217 -0
  1529. package/tests/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
  1530. package/tests/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
  1531. package/tests/node_modules/jsdom/lib/jsdom/living/named-properties-window.js +141 -0
  1532. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
  1533. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
  1534. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
  1535. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
  1536. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
  1537. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
  1538. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
  1539. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
  1540. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
  1541. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
  1542. package/tests/node_modules/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
  1543. package/tests/node_modules/jsdom/lib/jsdom/living/node-document-position.js +10 -0
  1544. package/tests/node_modules/jsdom/lib/jsdom/living/node-type.js +16 -0
  1545. package/tests/node_modules/jsdom/lib/jsdom/living/node.js +331 -0
  1546. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
  1547. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
  1548. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
  1549. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
  1550. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
  1551. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
  1552. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
  1553. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Document-impl.js +946 -0
  1554. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
  1555. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
  1556. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
  1557. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Element-impl.js +578 -0
  1558. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +25 -0
  1559. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
  1560. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +95 -0
  1561. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
  1562. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
  1563. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
  1564. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
  1565. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +27 -0
  1566. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
  1567. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
  1568. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +130 -0
  1569. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
  1570. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
  1571. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
  1572. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
  1573. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
  1574. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
  1575. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
  1576. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
  1577. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +160 -0
  1578. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
  1579. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
  1580. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
  1581. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +226 -0
  1582. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +261 -0
  1583. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
  1584. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
  1585. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
  1586. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
  1587. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
  1588. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +371 -0
  1589. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
  1590. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +132 -0
  1591. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1128 -0
  1592. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
  1593. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
  1594. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
  1595. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +101 -0
  1596. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
  1597. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
  1598. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
  1599. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
  1600. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
  1601. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
  1602. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
  1603. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
  1604. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
  1605. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
  1606. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
  1607. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
  1608. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +85 -0
  1609. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
  1610. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
  1611. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
  1612. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
  1613. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
  1614. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +74 -0
  1615. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
  1616. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +265 -0
  1617. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
  1618. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
  1619. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
  1620. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
  1621. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +74 -0
  1622. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
  1623. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
  1624. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
  1625. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
  1626. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
  1627. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
  1628. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
  1629. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +272 -0
  1630. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
  1631. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
  1632. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
  1633. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
  1634. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
  1635. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
  1636. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
  1637. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Node-impl.js +1165 -0
  1638. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
  1639. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
  1640. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
  1641. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +91 -0
  1642. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
  1643. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
  1644. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
  1645. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +42 -0
  1646. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
  1647. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
  1648. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +40 -0
  1649. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
  1650. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
  1651. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
  1652. package/tests/node_modules/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
  1653. package/tests/node_modules/jsdom/lib/jsdom/living/post-message.js +39 -0
  1654. package/tests/node_modules/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
  1655. package/tests/node_modules/jsdom/lib/jsdom/living/range/Range-impl.js +889 -0
  1656. package/tests/node_modules/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
  1657. package/tests/node_modules/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
  1658. package/tests/node_modules/jsdom/lib/jsdom/living/selection/Selection-impl.js +342 -0
  1659. package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +38 -0
  1660. package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
  1661. package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
  1662. package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
  1663. package/tests/node_modules/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +127 -0
  1664. package/tests/node_modules/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
  1665. package/tests/node_modules/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
  1666. package/tests/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl-browser.js +175 -0
  1667. package/tests/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
  1668. package/tests/node_modules/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
  1669. package/tests/node_modules/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
  1670. package/tests/node_modules/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
  1671. package/tests/node_modules/jsdom/lib/jsdom/living/window/History-impl.js +134 -0
  1672. package/tests/node_modules/jsdom/lib/jsdom/living/window/Location-impl.js +238 -0
  1673. package/tests/node_modules/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
  1674. package/tests/node_modules/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
  1675. package/tests/node_modules/jsdom/lib/jsdom/living/window/navigation.js +85 -0
  1676. package/tests/node_modules/jsdom/lib/jsdom/living/xhr/FormData-impl.js +171 -0
  1677. package/tests/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1023 -0
  1678. package/tests/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
  1679. package/tests/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
  1680. package/tests/node_modules/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +60 -0
  1681. package/tests/node_modules/jsdom/lib/jsdom/living/xhr/xhr-utils.js +438 -0
  1682. package/tests/node_modules/jsdom/lib/jsdom/named-properties-tracker.js +158 -0
  1683. package/tests/node_modules/jsdom/lib/jsdom/utils.js +165 -0
  1684. package/tests/node_modules/jsdom/lib/jsdom/virtual-console.js +34 -0
  1685. package/tests/node_modules/jsdom/lib/jsdom/vm-shim.js +106 -0
  1686. package/tests/node_modules/jsdom/node_modules/tough-cookie/LICENSE +12 -0
  1687. package/tests/node_modules/jsdom/node_modules/tough-cookie/README.md +582 -0
  1688. package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/cookie.js +1671 -0
  1689. package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/memstore.js +190 -0
  1690. package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/pathMatch.js +61 -0
  1691. package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/permuteDomain.js +70 -0
  1692. package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/pubsuffix-psl.js +38 -0
  1693. package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/store.js +76 -0
  1694. package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/version.js +2 -0
  1695. package/tests/node_modules/jsdom/node_modules/tough-cookie/package.json +109 -0
  1696. package/tests/node_modules/jsdom/package.json +116 -0
  1697. package/tests/node_modules/levn/LICENSE +22 -0
  1698. package/tests/node_modules/levn/README.md +196 -0
  1699. package/tests/node_modules/levn/lib/cast.js +298 -0
  1700. package/tests/node_modules/levn/lib/coerce.js +285 -0
  1701. package/tests/node_modules/levn/lib/index.js +22 -0
  1702. package/tests/node_modules/levn/lib/parse-string.js +113 -0
  1703. package/tests/node_modules/levn/lib/parse.js +102 -0
  1704. package/tests/node_modules/levn/package.json +47 -0
  1705. package/tests/node_modules/lodash.clonedeep/LICENSE +47 -0
  1706. package/tests/node_modules/lodash.clonedeep/README.md +18 -0
  1707. package/tests/node_modules/lodash.clonedeep/index.js +1748 -0
  1708. package/tests/node_modules/lodash.clonedeep/package.json +17 -0
  1709. package/tests/node_modules/lodash.merge/LICENSE +47 -0
  1710. package/tests/node_modules/lodash.merge/README.md +18 -0
  1711. package/tests/node_modules/lodash.merge/index.js +1977 -0
  1712. package/tests/node_modules/lodash.merge/package.json +16 -0
  1713. package/tests/node_modules/media-typer/HISTORY.md +22 -0
  1714. package/tests/node_modules/media-typer/LICENSE +22 -0
  1715. package/tests/node_modules/media-typer/README.md +81 -0
  1716. package/tests/node_modules/media-typer/index.js +270 -0
  1717. package/tests/node_modules/media-typer/package.json +26 -0
  1718. package/tests/node_modules/merge-descriptors/HISTORY.md +21 -0
  1719. package/tests/node_modules/merge-descriptors/LICENSE +23 -0
  1720. package/tests/node_modules/merge-descriptors/README.md +48 -0
  1721. package/tests/node_modules/merge-descriptors/index.js +60 -0
  1722. package/tests/node_modules/merge-descriptors/package.json +32 -0
  1723. package/tests/node_modules/methods/HISTORY.md +29 -0
  1724. package/tests/node_modules/methods/LICENSE +24 -0
  1725. package/tests/node_modules/methods/README.md +51 -0
  1726. package/tests/node_modules/methods/index.js +69 -0
  1727. package/tests/node_modules/methods/package.json +36 -0
  1728. package/tests/node_modules/mime/CHANGELOG.md +164 -0
  1729. package/tests/node_modules/mime/LICENSE +21 -0
  1730. package/tests/node_modules/mime/README.md +90 -0
  1731. package/tests/node_modules/mime/cli.js +8 -0
  1732. package/tests/node_modules/mime/mime.js +108 -0
  1733. package/tests/node_modules/mime/package.json +44 -0
  1734. package/tests/node_modules/mime/src/build.js +53 -0
  1735. package/tests/node_modules/mime/src/test.js +60 -0
  1736. package/tests/node_modules/mime/types.json +1 -0
  1737. package/tests/node_modules/mime-db/HISTORY.md +507 -0
  1738. package/tests/node_modules/mime-db/LICENSE +23 -0
  1739. package/tests/node_modules/mime-db/README.md +100 -0
  1740. package/tests/node_modules/mime-db/db.json +8519 -0
  1741. package/tests/node_modules/mime-db/index.js +12 -0
  1742. package/tests/node_modules/mime-db/package.json +60 -0
  1743. package/tests/node_modules/mime-types/HISTORY.md +397 -0
  1744. package/tests/node_modules/mime-types/LICENSE +23 -0
  1745. package/tests/node_modules/mime-types/README.md +113 -0
  1746. package/tests/node_modules/mime-types/index.js +188 -0
  1747. package/tests/node_modules/mime-types/package.json +44 -0
  1748. package/tests/node_modules/ms/index.js +152 -0
  1749. package/tests/node_modules/ms/license.md +21 -0
  1750. package/tests/node_modules/ms/package.json +37 -0
  1751. package/tests/node_modules/ms/readme.md +51 -0
  1752. package/tests/node_modules/negotiator/HISTORY.md +108 -0
  1753. package/tests/node_modules/negotiator/LICENSE +24 -0
  1754. package/tests/node_modules/negotiator/README.md +203 -0
  1755. package/tests/node_modules/negotiator/index.js +82 -0
  1756. package/tests/node_modules/negotiator/lib/charset.js +169 -0
  1757. package/tests/node_modules/negotiator/lib/encoding.js +184 -0
  1758. package/tests/node_modules/negotiator/lib/language.js +179 -0
  1759. package/tests/node_modules/negotiator/lib/mediaType.js +294 -0
  1760. package/tests/node_modules/negotiator/package.json +42 -0
  1761. package/tests/node_modules/nwsapi/LICENSE +22 -0
  1762. package/tests/node_modules/nwsapi/README.md +132 -0
  1763. package/tests/node_modules/nwsapi/dist/lint.log +0 -0
  1764. package/tests/node_modules/nwsapi/package.json +38 -0
  1765. package/tests/node_modules/nwsapi/src/modules/nwsapi-jquery.js +135 -0
  1766. package/tests/node_modules/nwsapi/src/modules/nwsapi-traversal.js +90 -0
  1767. package/tests/node_modules/nwsapi/src/nwsapi.js +1800 -0
  1768. package/tests/node_modules/object-inspect/.eslintrc +53 -0
  1769. package/tests/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  1770. package/tests/node_modules/object-inspect/.nycrc +13 -0
  1771. package/tests/node_modules/object-inspect/CHANGELOG.md +360 -0
  1772. package/tests/node_modules/object-inspect/LICENSE +21 -0
  1773. package/tests/node_modules/object-inspect/example/all.js +23 -0
  1774. package/tests/node_modules/object-inspect/example/circular.js +6 -0
  1775. package/tests/node_modules/object-inspect/example/fn.js +5 -0
  1776. package/tests/node_modules/object-inspect/example/inspect.js +10 -0
  1777. package/tests/node_modules/object-inspect/index.js +512 -0
  1778. package/tests/node_modules/object-inspect/package-support.json +20 -0
  1779. package/tests/node_modules/object-inspect/package.json +94 -0
  1780. package/tests/node_modules/object-inspect/readme.markdown +86 -0
  1781. package/tests/node_modules/object-inspect/test/bigint.js +58 -0
  1782. package/tests/node_modules/object-inspect/test/browser/dom.js +15 -0
  1783. package/tests/node_modules/object-inspect/test/circular.js +16 -0
  1784. package/tests/node_modules/object-inspect/test/deep.js +12 -0
  1785. package/tests/node_modules/object-inspect/test/element.js +53 -0
  1786. package/tests/node_modules/object-inspect/test/err.js +48 -0
  1787. package/tests/node_modules/object-inspect/test/fakes.js +29 -0
  1788. package/tests/node_modules/object-inspect/test/fn.js +76 -0
  1789. package/tests/node_modules/object-inspect/test/has.js +15 -0
  1790. package/tests/node_modules/object-inspect/test/holes.js +15 -0
  1791. package/tests/node_modules/object-inspect/test/indent-option.js +271 -0
  1792. package/tests/node_modules/object-inspect/test/inspect.js +139 -0
  1793. package/tests/node_modules/object-inspect/test/lowbyte.js +12 -0
  1794. package/tests/node_modules/object-inspect/test/number.js +58 -0
  1795. package/tests/node_modules/object-inspect/test/quoteStyle.js +17 -0
  1796. package/tests/node_modules/object-inspect/test/toStringTag.js +40 -0
  1797. package/tests/node_modules/object-inspect/test/undef.js +12 -0
  1798. package/tests/node_modules/object-inspect/test/values.js +211 -0
  1799. package/tests/node_modules/object-inspect/test-core-js.js +26 -0
  1800. package/tests/node_modules/object-inspect/util.inspect.js +1 -0
  1801. package/tests/node_modules/on-finished/HISTORY.md +98 -0
  1802. package/tests/node_modules/on-finished/LICENSE +23 -0
  1803. package/tests/node_modules/on-finished/README.md +162 -0
  1804. package/tests/node_modules/on-finished/index.js +234 -0
  1805. package/tests/node_modules/on-finished/package.json +39 -0
  1806. package/tests/node_modules/optionator/CHANGELOG.md +56 -0
  1807. package/tests/node_modules/optionator/LICENSE +22 -0
  1808. package/tests/node_modules/optionator/README.md +238 -0
  1809. package/tests/node_modules/optionator/lib/help.js +260 -0
  1810. package/tests/node_modules/optionator/lib/index.js +465 -0
  1811. package/tests/node_modules/optionator/lib/util.js +54 -0
  1812. package/tests/node_modules/optionator/package.json +44 -0
  1813. package/tests/node_modules/parse5/LICENSE +19 -0
  1814. package/tests/node_modules/parse5/README.md +38 -0
  1815. package/tests/node_modules/parse5/lib/common/doctype.js +162 -0
  1816. package/tests/node_modules/parse5/lib/common/error-codes.js +65 -0
  1817. package/tests/node_modules/parse5/lib/common/foreign-content.js +265 -0
  1818. package/tests/node_modules/parse5/lib/common/html.js +272 -0
  1819. package/tests/node_modules/parse5/lib/common/unicode.js +109 -0
  1820. package/tests/node_modules/parse5/lib/extensions/error-reporting/mixin-base.js +43 -0
  1821. package/tests/node_modules/parse5/lib/extensions/error-reporting/parser-mixin.js +52 -0
  1822. package/tests/node_modules/parse5/lib/extensions/error-reporting/preprocessor-mixin.js +24 -0
  1823. package/tests/node_modules/parse5/lib/extensions/error-reporting/tokenizer-mixin.js +17 -0
  1824. package/tests/node_modules/parse5/lib/extensions/location-info/open-element-stack-mixin.js +35 -0
  1825. package/tests/node_modules/parse5/lib/extensions/location-info/parser-mixin.js +223 -0
  1826. package/tests/node_modules/parse5/lib/extensions/location-info/tokenizer-mixin.js +146 -0
  1827. package/tests/node_modules/parse5/lib/extensions/position-tracking/preprocessor-mixin.js +64 -0
  1828. package/tests/node_modules/parse5/lib/index.js +29 -0
  1829. package/tests/node_modules/parse5/lib/parser/formatting-element-list.js +181 -0
  1830. package/tests/node_modules/parse5/lib/parser/index.js +2956 -0
  1831. package/tests/node_modules/parse5/lib/parser/open-element-stack.js +482 -0
  1832. package/tests/node_modules/parse5/lib/serializer/index.js +176 -0
  1833. package/tests/node_modules/parse5/lib/tokenizer/index.js +2196 -0
  1834. package/tests/node_modules/parse5/lib/tokenizer/named-entity-data.js +5 -0
  1835. package/tests/node_modules/parse5/lib/tokenizer/preprocessor.js +159 -0
  1836. package/tests/node_modules/parse5/lib/tree-adapters/default.js +221 -0
  1837. package/tests/node_modules/parse5/lib/utils/merge-options.js +13 -0
  1838. package/tests/node_modules/parse5/lib/utils/mixin.js +39 -0
  1839. package/tests/node_modules/parse5/package.json +35 -0
  1840. package/tests/node_modules/parseurl/HISTORY.md +58 -0
  1841. package/tests/node_modules/parseurl/LICENSE +24 -0
  1842. package/tests/node_modules/parseurl/README.md +133 -0
  1843. package/tests/node_modules/parseurl/index.js +158 -0
  1844. package/tests/node_modules/parseurl/package.json +40 -0
  1845. package/tests/node_modules/path-to-regexp/History.md +36 -0
  1846. package/tests/node_modules/path-to-regexp/LICENSE +21 -0
  1847. package/tests/node_modules/path-to-regexp/Readme.md +35 -0
  1848. package/tests/node_modules/path-to-regexp/index.js +129 -0
  1849. package/tests/node_modules/path-to-regexp/package.json +30 -0
  1850. package/tests/node_modules/prelude-ls/CHANGELOG.md +99 -0
  1851. package/tests/node_modules/prelude-ls/LICENSE +22 -0
  1852. package/tests/node_modules/prelude-ls/README.md +15 -0
  1853. package/tests/node_modules/prelude-ls/lib/Func.js +65 -0
  1854. package/tests/node_modules/prelude-ls/lib/List.js +686 -0
  1855. package/tests/node_modules/prelude-ls/lib/Num.js +130 -0
  1856. package/tests/node_modules/prelude-ls/lib/Obj.js +154 -0
  1857. package/tests/node_modules/prelude-ls/lib/Str.js +92 -0
  1858. package/tests/node_modules/prelude-ls/lib/index.js +178 -0
  1859. package/tests/node_modules/prelude-ls/package.json +52 -0
  1860. package/tests/node_modules/process-nextick-args/index.js +45 -0
  1861. package/tests/node_modules/process-nextick-args/license.md +19 -0
  1862. package/tests/node_modules/process-nextick-args/package.json +25 -0
  1863. package/tests/node_modules/process-nextick-args/readme.md +18 -0
  1864. package/tests/node_modules/proxy-addr/HISTORY.md +161 -0
  1865. package/tests/node_modules/proxy-addr/LICENSE +22 -0
  1866. package/tests/node_modules/proxy-addr/README.md +139 -0
  1867. package/tests/node_modules/proxy-addr/index.js +327 -0
  1868. package/tests/node_modules/proxy-addr/package.json +47 -0
  1869. package/tests/node_modules/psl/LICENSE +9 -0
  1870. package/tests/node_modules/psl/README.md +215 -0
  1871. package/tests/node_modules/psl/browserstack-logo.svg +90 -0
  1872. package/tests/node_modules/psl/data/rules.json +8834 -0
  1873. package/tests/node_modules/psl/dist/psl.js +9645 -0
  1874. package/tests/node_modules/psl/dist/psl.min.js +1 -0
  1875. package/tests/node_modules/psl/index.js +269 -0
  1876. package/tests/node_modules/psl/package.json +44 -0
  1877. package/tests/node_modules/punycode/LICENSE-MIT.txt +20 -0
  1878. package/tests/node_modules/punycode/README.md +122 -0
  1879. package/tests/node_modules/punycode/package.json +58 -0
  1880. package/tests/node_modules/punycode/punycode.es6.js +441 -0
  1881. package/tests/node_modules/punycode/punycode.js +440 -0
  1882. package/tests/node_modules/qs/.editorconfig +40 -0
  1883. package/tests/node_modules/qs/.eslintrc +38 -0
  1884. package/tests/node_modules/qs/.github/FUNDING.yml +12 -0
  1885. package/tests/node_modules/qs/.nycrc +13 -0
  1886. package/tests/node_modules/qs/CHANGELOG.md +388 -0
  1887. package/tests/node_modules/qs/LICENSE.md +29 -0
  1888. package/tests/node_modules/qs/README.md +623 -0
  1889. package/tests/node_modules/qs/dist/qs.js +2044 -0
  1890. package/tests/node_modules/qs/lib/formats.js +23 -0
  1891. package/tests/node_modules/qs/lib/index.js +11 -0
  1892. package/tests/node_modules/qs/lib/parse.js +263 -0
  1893. package/tests/node_modules/qs/lib/stringify.js +317 -0
  1894. package/tests/node_modules/qs/lib/utils.js +252 -0
  1895. package/tests/node_modules/qs/package.json +73 -0
  1896. package/tests/node_modules/qs/test/parse.js +841 -0
  1897. package/tests/node_modules/qs/test/stringify.js +865 -0
  1898. package/tests/node_modules/qs/test/utils.js +136 -0
  1899. package/tests/node_modules/range-parser/HISTORY.md +56 -0
  1900. package/tests/node_modules/range-parser/LICENSE +23 -0
  1901. package/tests/node_modules/range-parser/README.md +84 -0
  1902. package/tests/node_modules/range-parser/index.js +162 -0
  1903. package/tests/node_modules/range-parser/package.json +44 -0
  1904. package/tests/node_modules/raw-body/HISTORY.md +303 -0
  1905. package/tests/node_modules/raw-body/LICENSE +22 -0
  1906. package/tests/node_modules/raw-body/README.md +223 -0
  1907. package/tests/node_modules/raw-body/SECURITY.md +24 -0
  1908. package/tests/node_modules/raw-body/index.d.ts +87 -0
  1909. package/tests/node_modules/raw-body/index.js +329 -0
  1910. package/tests/node_modules/raw-body/package.json +49 -0
  1911. package/tests/node_modules/readable-stream/.travis.yml +34 -0
  1912. package/tests/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  1913. package/tests/node_modules/readable-stream/GOVERNANCE.md +136 -0
  1914. package/tests/node_modules/readable-stream/LICENSE +47 -0
  1915. package/tests/node_modules/readable-stream/README.md +58 -0
  1916. package/tests/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  1917. package/tests/node_modules/readable-stream/duplex-browser.js +1 -0
  1918. package/tests/node_modules/readable-stream/duplex.js +1 -0
  1919. package/tests/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
  1920. package/tests/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
  1921. package/tests/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
  1922. package/tests/node_modules/readable-stream/lib/_stream_transform.js +214 -0
  1923. package/tests/node_modules/readable-stream/lib/_stream_writable.js +687 -0
  1924. package/tests/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
  1925. package/tests/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
  1926. package/tests/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  1927. package/tests/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  1928. package/tests/node_modules/readable-stream/package.json +52 -0
  1929. package/tests/node_modules/readable-stream/passthrough.js +1 -0
  1930. package/tests/node_modules/readable-stream/readable-browser.js +7 -0
  1931. package/tests/node_modules/readable-stream/readable.js +19 -0
  1932. package/tests/node_modules/readable-stream/transform.js +1 -0
  1933. package/tests/node_modules/readable-stream/writable-browser.js +1 -0
  1934. package/tests/node_modules/readable-stream/writable.js +8 -0
  1935. package/tests/node_modules/safe-buffer/LICENSE +21 -0
  1936. package/tests/node_modules/safe-buffer/README.md +584 -0
  1937. package/tests/node_modules/safe-buffer/index.d.ts +187 -0
  1938. package/tests/node_modules/safe-buffer/index.js +62 -0
  1939. package/tests/node_modules/safe-buffer/package.json +37 -0
  1940. package/tests/node_modules/safer-buffer/LICENSE +21 -0
  1941. package/tests/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  1942. package/tests/node_modules/safer-buffer/Readme.md +156 -0
  1943. package/tests/node_modules/safer-buffer/dangerous.js +58 -0
  1944. package/tests/node_modules/safer-buffer/package.json +34 -0
  1945. package/tests/node_modules/safer-buffer/safer.js +77 -0
  1946. package/tests/node_modules/safer-buffer/tests.js +406 -0
  1947. package/tests/node_modules/saxes/README.md +323 -0
  1948. package/tests/node_modules/saxes/package.json +70 -0
  1949. package/tests/node_modules/saxes/saxes.d.ts +635 -0
  1950. package/tests/node_modules/saxes/saxes.js +2064 -0
  1951. package/tests/node_modules/saxes/saxes.js.map +1 -0
  1952. package/tests/node_modules/send/HISTORY.md +521 -0
  1953. package/tests/node_modules/send/LICENSE +23 -0
  1954. package/tests/node_modules/send/README.md +327 -0
  1955. package/tests/node_modules/send/SECURITY.md +24 -0
  1956. package/tests/node_modules/send/index.js +1143 -0
  1957. package/tests/node_modules/send/node_modules/ms/index.js +162 -0
  1958. package/tests/node_modules/send/node_modules/ms/license.md +21 -0
  1959. package/tests/node_modules/send/node_modules/ms/package.json +38 -0
  1960. package/tests/node_modules/send/node_modules/ms/readme.md +59 -0
  1961. package/tests/node_modules/send/package.json +62 -0
  1962. package/tests/node_modules/serve-static/HISTORY.md +471 -0
  1963. package/tests/node_modules/serve-static/LICENSE +25 -0
  1964. package/tests/node_modules/serve-static/README.md +257 -0
  1965. package/tests/node_modules/serve-static/index.js +210 -0
  1966. package/tests/node_modules/serve-static/package.json +42 -0
  1967. package/tests/node_modules/setprototypeof/LICENSE +13 -0
  1968. package/tests/node_modules/setprototypeof/README.md +31 -0
  1969. package/tests/node_modules/setprototypeof/index.d.ts +2 -0
  1970. package/tests/node_modules/setprototypeof/index.js +17 -0
  1971. package/tests/node_modules/setprototypeof/package.json +38 -0
  1972. package/tests/node_modules/setprototypeof/test/index.js +24 -0
  1973. package/tests/node_modules/side-channel/.eslintignore +1 -0
  1974. package/tests/node_modules/side-channel/.eslintrc +11 -0
  1975. package/tests/node_modules/side-channel/.github/FUNDING.yml +12 -0
  1976. package/tests/node_modules/side-channel/.nycrc +13 -0
  1977. package/tests/node_modules/side-channel/CHANGELOG.md +65 -0
  1978. package/tests/node_modules/side-channel/LICENSE +21 -0
  1979. package/tests/node_modules/side-channel/README.md +2 -0
  1980. package/tests/node_modules/side-channel/index.js +124 -0
  1981. package/tests/node_modules/side-channel/package.json +67 -0
  1982. package/tests/node_modules/side-channel/test/index.js +78 -0
  1983. package/tests/node_modules/source-map/CHANGELOG.md +301 -0
  1984. package/tests/node_modules/source-map/LICENSE +28 -0
  1985. package/tests/node_modules/source-map/README.md +742 -0
  1986. package/tests/node_modules/source-map/dist/source-map.debug.js +3234 -0
  1987. package/tests/node_modules/source-map/dist/source-map.js +3233 -0
  1988. package/tests/node_modules/source-map/dist/source-map.min.js +2 -0
  1989. package/tests/node_modules/source-map/dist/source-map.min.js.map +1 -0
  1990. package/tests/node_modules/source-map/lib/array-set.js +121 -0
  1991. package/tests/node_modules/source-map/lib/base64-vlq.js +140 -0
  1992. package/tests/node_modules/source-map/lib/base64.js +67 -0
  1993. package/tests/node_modules/source-map/lib/binary-search.js +111 -0
  1994. package/tests/node_modules/source-map/lib/mapping-list.js +79 -0
  1995. package/tests/node_modules/source-map/lib/quick-sort.js +114 -0
  1996. package/tests/node_modules/source-map/lib/source-map-consumer.js +1145 -0
  1997. package/tests/node_modules/source-map/lib/source-map-generator.js +425 -0
  1998. package/tests/node_modules/source-map/lib/source-node.js +413 -0
  1999. package/tests/node_modules/source-map/lib/util.js +488 -0
  2000. package/tests/node_modules/source-map/package.json +73 -0
  2001. package/tests/node_modules/source-map/source-map.d.ts +98 -0
  2002. package/tests/node_modules/source-map/source-map.js +8 -0
  2003. package/tests/node_modules/statuses/HISTORY.md +82 -0
  2004. package/tests/node_modules/statuses/LICENSE +23 -0
  2005. package/tests/node_modules/statuses/README.md +136 -0
  2006. package/tests/node_modules/statuses/codes.json +65 -0
  2007. package/tests/node_modules/statuses/index.js +146 -0
  2008. package/tests/node_modules/statuses/package.json +49 -0
  2009. package/tests/node_modules/stream-length/README.md +97 -0
  2010. package/tests/node_modules/stream-length/gulpfile.js +28 -0
  2011. package/tests/node_modules/stream-length/index.coffee +1 -0
  2012. package/tests/node_modules/stream-length/index.js +1 -0
  2013. package/tests/node_modules/stream-length/lib/stream-length.coffee +82 -0
  2014. package/tests/node_modules/stream-length/lib/stream-length.js +110 -0
  2015. package/tests/node_modules/stream-length/package.json +36 -0
  2016. package/tests/node_modules/stream-length/test-any.coffee +59 -0
  2017. package/tests/node_modules/stream-length/test.coffee +57 -0
  2018. package/tests/node_modules/string_decoder/.travis.yml +50 -0
  2019. package/tests/node_modules/string_decoder/LICENSE +48 -0
  2020. package/tests/node_modules/string_decoder/README.md +47 -0
  2021. package/tests/node_modules/string_decoder/lib/string_decoder.js +296 -0
  2022. package/tests/node_modules/string_decoder/package.json +31 -0
  2023. package/tests/node_modules/symbol-tree/LICENSE +21 -0
  2024. package/tests/node_modules/symbol-tree/README.md +545 -0
  2025. package/tests/node_modules/symbol-tree/lib/SymbolTree.js +838 -0
  2026. package/tests/node_modules/symbol-tree/lib/SymbolTreeNode.js +54 -0
  2027. package/tests/node_modules/symbol-tree/lib/TreeIterator.js +69 -0
  2028. package/tests/node_modules/symbol-tree/lib/TreePosition.js +11 -0
  2029. package/tests/node_modules/symbol-tree/package.json +47 -0
  2030. package/tests/node_modules/through2/LICENSE +39 -0
  2031. package/tests/node_modules/through2/README.md +140 -0
  2032. package/tests/node_modules/through2/node_modules/isarray/README.md +54 -0
  2033. package/tests/node_modules/through2/node_modules/isarray/build/build.js +209 -0
  2034. package/tests/node_modules/through2/node_modules/isarray/component.json +19 -0
  2035. package/tests/node_modules/through2/node_modules/isarray/index.js +3 -0
  2036. package/tests/node_modules/through2/node_modules/isarray/package.json +25 -0
  2037. package/tests/node_modules/through2/node_modules/readable-stream/LICENSE +18 -0
  2038. package/tests/node_modules/through2/node_modules/readable-stream/README.md +15 -0
  2039. package/tests/node_modules/through2/node_modules/readable-stream/duplex.js +1 -0
  2040. package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  2041. package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  2042. package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js +982 -0
  2043. package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js +210 -0
  2044. package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js +386 -0
  2045. package/tests/node_modules/through2/node_modules/readable-stream/package.json +32 -0
  2046. package/tests/node_modules/through2/node_modules/readable-stream/passthrough.js +1 -0
  2047. package/tests/node_modules/through2/node_modules/readable-stream/readable.js +11 -0
  2048. package/tests/node_modules/through2/node_modules/readable-stream/transform.js +1 -0
  2049. package/tests/node_modules/through2/node_modules/readable-stream/writable.js +1 -0
  2050. package/tests/node_modules/through2/node_modules/string_decoder/LICENSE +20 -0
  2051. package/tests/node_modules/through2/node_modules/string_decoder/README.md +7 -0
  2052. package/tests/node_modules/through2/node_modules/string_decoder/index.js +221 -0
  2053. package/tests/node_modules/through2/node_modules/string_decoder/package.json +25 -0
  2054. package/tests/node_modules/through2/package.json +32 -0
  2055. package/tests/node_modules/through2/through2.js +78 -0
  2056. package/tests/node_modules/through2-sink/README.md +85 -0
  2057. package/tests/node_modules/through2-sink/index.js +44 -0
  2058. package/tests/node_modules/through2-sink/package.json +30 -0
  2059. package/tests/node_modules/through2-spy/LICENSE +9 -0
  2060. package/tests/node_modules/through2-spy/README.md +86 -0
  2061. package/tests/node_modules/through2-spy/index.js +45 -0
  2062. package/tests/node_modules/through2-spy/package.json +48 -0
  2063. package/tests/node_modules/through2-spy/test/index.js +284 -0
  2064. package/tests/node_modules/toidentifier/HISTORY.md +9 -0
  2065. package/tests/node_modules/toidentifier/LICENSE +21 -0
  2066. package/tests/node_modules/toidentifier/README.md +61 -0
  2067. package/tests/node_modules/toidentifier/index.js +32 -0
  2068. package/tests/node_modules/toidentifier/package.json +38 -0
  2069. package/tests/node_modules/tough-cookie/LICENSE +12 -0
  2070. package/tests/node_modules/tough-cookie/README.md +527 -0
  2071. package/tests/node_modules/tough-cookie/lib/cookie.js +1482 -0
  2072. package/tests/node_modules/tough-cookie/lib/memstore.js +181 -0
  2073. package/tests/node_modules/tough-cookie/lib/pathMatch.js +61 -0
  2074. package/tests/node_modules/tough-cookie/lib/permuteDomain.js +56 -0
  2075. package/tests/node_modules/tough-cookie/lib/pubsuffix-psl.js +38 -0
  2076. package/tests/node_modules/tough-cookie/lib/store.js +75 -0
  2077. package/tests/node_modules/tough-cookie/lib/version.js +2 -0
  2078. package/tests/node_modules/tough-cookie/package.json +78 -0
  2079. package/tests/node_modules/tr46/LICENSE.md +21 -0
  2080. package/tests/node_modules/tr46/README.md +72 -0
  2081. package/tests/node_modules/tr46/index.js +297 -0
  2082. package/tests/node_modules/tr46/lib/mappingTable.json +1 -0
  2083. package/tests/node_modules/tr46/lib/regexes.js +29 -0
  2084. package/tests/node_modules/tr46/lib/statusMapping.js +11 -0
  2085. package/tests/node_modules/tr46/package.json +46 -0
  2086. package/tests/node_modules/type-check/LICENSE +22 -0
  2087. package/tests/node_modules/type-check/README.md +210 -0
  2088. package/tests/node_modules/type-check/lib/check.js +126 -0
  2089. package/tests/node_modules/type-check/lib/index.js +16 -0
  2090. package/tests/node_modules/type-check/lib/parse-type.js +196 -0
  2091. package/tests/node_modules/type-check/package.json +40 -0
  2092. package/tests/node_modules/type-is/HISTORY.md +259 -0
  2093. package/tests/node_modules/type-is/LICENSE +23 -0
  2094. package/tests/node_modules/type-is/README.md +170 -0
  2095. package/tests/node_modules/type-is/index.js +266 -0
  2096. package/tests/node_modules/type-is/package.json +45 -0
  2097. package/tests/node_modules/typedarray/.travis.yml +4 -0
  2098. package/tests/node_modules/typedarray/LICENSE +35 -0
  2099. package/tests/node_modules/typedarray/example/tarray.js +4 -0
  2100. package/tests/node_modules/typedarray/index.js +630 -0
  2101. package/tests/node_modules/typedarray/package.json +55 -0
  2102. package/tests/node_modules/typedarray/readme.markdown +61 -0
  2103. package/tests/node_modules/typedarray/test/server/undef_globals.js +19 -0
  2104. package/tests/node_modules/typedarray/test/tarray.js +10 -0
  2105. package/tests/node_modules/universalify/LICENSE +20 -0
  2106. package/tests/node_modules/universalify/README.md +76 -0
  2107. package/tests/node_modules/universalify/index.js +25 -0
  2108. package/tests/node_modules/universalify/package.json +34 -0
  2109. package/tests/node_modules/unpipe/HISTORY.md +4 -0
  2110. package/tests/node_modules/unpipe/LICENSE +22 -0
  2111. package/tests/node_modules/unpipe/README.md +43 -0
  2112. package/tests/node_modules/unpipe/index.js +69 -0
  2113. package/tests/node_modules/unpipe/package.json +27 -0
  2114. package/tests/node_modules/unprint/README.md +1 -0
  2115. package/tests/node_modules/unprint/package.json +29 -0
  2116. package/tests/node_modules/unprint/src/app.js +3 -0
  2117. package/tests/node_modules/util-deprecate/History.md +16 -0
  2118. package/tests/node_modules/util-deprecate/LICENSE +24 -0
  2119. package/tests/node_modules/util-deprecate/README.md +53 -0
  2120. package/tests/node_modules/util-deprecate/browser.js +67 -0
  2121. package/tests/node_modules/util-deprecate/node.js +6 -0
  2122. package/tests/node_modules/util-deprecate/package.json +27 -0
  2123. package/tests/node_modules/utils-merge/LICENSE +20 -0
  2124. package/tests/node_modules/utils-merge/README.md +34 -0
  2125. package/tests/node_modules/utils-merge/index.js +23 -0
  2126. package/tests/node_modules/utils-merge/package.json +40 -0
  2127. package/tests/node_modules/uuid/.travis.yml +5 -0
  2128. package/tests/node_modules/uuid/LICENSE.md +2 -0
  2129. package/tests/node_modules/uuid/README.md +205 -0
  2130. package/tests/node_modules/uuid/benchmark/README.md +53 -0
  2131. package/tests/node_modules/uuid/benchmark/bench.gnu +174 -0
  2132. package/tests/node_modules/uuid/benchmark/bench.sh +34 -0
  2133. package/tests/node_modules/uuid/benchmark/benchmark-native.c +34 -0
  2134. package/tests/node_modules/uuid/benchmark/benchmark.js +84 -0
  2135. package/tests/node_modules/uuid/benchmark/package.json +9 -0
  2136. package/tests/node_modules/uuid/misc/compare.js +62 -0
  2137. package/tests/node_modules/uuid/misc/perf.js +102 -0
  2138. package/tests/node_modules/uuid/package.json +46 -0
  2139. package/tests/node_modules/uuid/rng-browser.js +32 -0
  2140. package/tests/node_modules/uuid/rng.js +4 -0
  2141. package/tests/node_modules/uuid/test/mocha.opts +1 -0
  2142. package/tests/node_modules/uuid/test/test.js +105 -0
  2143. package/tests/node_modules/uuid/uuid.js +183 -0
  2144. package/tests/node_modules/vary/HISTORY.md +39 -0
  2145. package/tests/node_modules/vary/LICENSE +22 -0
  2146. package/tests/node_modules/vary/README.md +101 -0
  2147. package/tests/node_modules/vary/index.js +149 -0
  2148. package/tests/node_modules/vary/package.json +43 -0
  2149. package/tests/node_modules/w3c-hr-time/CHANGELOG.md +19 -0
  2150. package/tests/node_modules/w3c-hr-time/LICENSE.md +21 -0
  2151. package/tests/node_modules/w3c-hr-time/README.md +130 -0
  2152. package/tests/node_modules/w3c-hr-time/index.js +11 -0
  2153. package/tests/node_modules/w3c-hr-time/lib/calculate-clock-offset.js +39 -0
  2154. package/tests/node_modules/w3c-hr-time/lib/clock-is-accurate.js +61 -0
  2155. package/tests/node_modules/w3c-hr-time/lib/global-monotonic-clock.js +10 -0
  2156. package/tests/node_modules/w3c-hr-time/lib/performance.js +53 -0
  2157. package/tests/node_modules/w3c-hr-time/lib/utils.js +11 -0
  2158. package/tests/node_modules/w3c-hr-time/package.json +26 -0
  2159. package/tests/node_modules/w3c-xmlserializer/LICENSE.md +25 -0
  2160. package/tests/node_modules/w3c-xmlserializer/README.md +41 -0
  2161. package/tests/node_modules/w3c-xmlserializer/lib/attributes.js +128 -0
  2162. package/tests/node_modules/w3c-xmlserializer/lib/constants.js +44 -0
  2163. package/tests/node_modules/w3c-xmlserializer/lib/serialize.js +371 -0
  2164. package/tests/node_modules/w3c-xmlserializer/package.json +32 -0
  2165. package/tests/node_modules/webidl-conversions/LICENSE.md +12 -0
  2166. package/tests/node_modules/webidl-conversions/README.md +101 -0
  2167. package/tests/node_modules/webidl-conversions/lib/index.js +489 -0
  2168. package/tests/node_modules/webidl-conversions/package.json +30 -0
  2169. package/tests/node_modules/whatwg-encoding/LICENSE.txt +7 -0
  2170. package/tests/node_modules/whatwg-encoding/README.md +50 -0
  2171. package/tests/node_modules/whatwg-encoding/lib/labels-to-names.json +207 -0
  2172. package/tests/node_modules/whatwg-encoding/lib/supported-names.json +37 -0
  2173. package/tests/node_modules/whatwg-encoding/lib/whatwg-encoding.js +47 -0
  2174. package/tests/node_modules/whatwg-encoding/package.json +29 -0
  2175. package/tests/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
  2176. package/tests/node_modules/whatwg-mimetype/README.md +101 -0
  2177. package/tests/node_modules/whatwg-mimetype/lib/mime-type.js +191 -0
  2178. package/tests/node_modules/whatwg-mimetype/lib/parser.js +124 -0
  2179. package/tests/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
  2180. package/tests/node_modules/whatwg-mimetype/lib/utils.js +25 -0
  2181. package/tests/node_modules/whatwg-mimetype/package.json +43 -0
  2182. package/tests/node_modules/whatwg-url/LICENSE.txt +21 -0
  2183. package/tests/node_modules/whatwg-url/README.md +105 -0
  2184. package/tests/node_modules/whatwg-url/dist/Function.js +46 -0
  2185. package/tests/node_modules/whatwg-url/dist/URL-impl.js +217 -0
  2186. package/tests/node_modules/whatwg-url/dist/URL.js +417 -0
  2187. package/tests/node_modules/whatwg-url/dist/URLSearchParams-impl.js +130 -0
  2188. package/tests/node_modules/whatwg-url/dist/URLSearchParams.js +457 -0
  2189. package/tests/node_modules/whatwg-url/dist/VoidFunction.js +30 -0
  2190. package/tests/node_modules/whatwg-url/dist/encoding.js +16 -0
  2191. package/tests/node_modules/whatwg-url/dist/infra.js +26 -0
  2192. package/tests/node_modules/whatwg-url/dist/percent-encoding.js +138 -0
  2193. package/tests/node_modules/whatwg-url/dist/url-state-machine.js +1230 -0
  2194. package/tests/node_modules/whatwg-url/dist/urlencoded.js +102 -0
  2195. package/tests/node_modules/whatwg-url/dist/utils.js +141 -0
  2196. package/tests/node_modules/whatwg-url/index.js +25 -0
  2197. package/tests/node_modules/whatwg-url/package.json +59 -0
  2198. package/tests/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
  2199. package/tests/node_modules/word-wrap/LICENSE +21 -0
  2200. package/tests/node_modules/word-wrap/README.md +182 -0
  2201. package/tests/node_modules/word-wrap/index.d.ts +50 -0
  2202. package/tests/node_modules/word-wrap/index.js +46 -0
  2203. package/tests/node_modules/word-wrap/package.json +77 -0
  2204. package/tests/node_modules/ws/LICENSE +19 -0
  2205. package/tests/node_modules/ws/README.md +495 -0
  2206. package/tests/node_modules/ws/browser.js +8 -0
  2207. package/tests/node_modules/ws/index.js +13 -0
  2208. package/tests/node_modules/ws/lib/buffer-util.js +127 -0
  2209. package/tests/node_modules/ws/lib/constants.js +12 -0
  2210. package/tests/node_modules/ws/lib/event-target.js +266 -0
  2211. package/tests/node_modules/ws/lib/extension.js +203 -0
  2212. package/tests/node_modules/ws/lib/limiter.js +55 -0
  2213. package/tests/node_modules/ws/lib/permessage-deflate.js +511 -0
  2214. package/tests/node_modules/ws/lib/receiver.js +618 -0
  2215. package/tests/node_modules/ws/lib/sender.js +478 -0
  2216. package/tests/node_modules/ws/lib/stream.js +159 -0
  2217. package/tests/node_modules/ws/lib/subprotocol.js +62 -0
  2218. package/tests/node_modules/ws/lib/validation.js +125 -0
  2219. package/tests/node_modules/ws/lib/websocket-server.js +535 -0
  2220. package/tests/node_modules/ws/lib/websocket.js +1296 -0
  2221. package/tests/node_modules/ws/package.json +61 -0
  2222. package/tests/node_modules/ws/wrapper.mjs +8 -0
  2223. package/tests/node_modules/xml-name-validator/LICENSE.txt +176 -0
  2224. package/tests/node_modules/xml-name-validator/README.md +36 -0
  2225. package/tests/node_modules/xml-name-validator/lib/generated-parser.js +504 -0
  2226. package/tests/node_modules/xml-name-validator/lib/grammar.pegjs +35 -0
  2227. package/tests/node_modules/xml-name-validator/lib/xml-name-validator.js +17 -0
  2228. package/tests/node_modules/xml-name-validator/package.json +28 -0
  2229. package/tests/node_modules/xmlchars/LICENSE +18 -0
  2230. package/tests/node_modules/xmlchars/README.md +33 -0
  2231. package/tests/node_modules/xmlchars/package.json +51 -0
  2232. package/tests/node_modules/xmlchars/xml/1.0/ed4.d.ts +31 -0
  2233. package/tests/node_modules/xmlchars/xml/1.0/ed4.js +44 -0
  2234. package/tests/node_modules/xmlchars/xml/1.0/ed4.js.map +1 -0
  2235. package/tests/node_modules/xmlchars/xml/1.0/ed5.d.ts +51 -0
  2236. package/tests/node_modules/xmlchars/xml/1.0/ed5.js +105 -0
  2237. package/tests/node_modules/xmlchars/xml/1.0/ed5.js.map +1 -0
  2238. package/tests/node_modules/xmlchars/xml/1.1/ed2.d.ts +73 -0
  2239. package/tests/node_modules/xmlchars/xml/1.1/ed2.js +145 -0
  2240. package/tests/node_modules/xmlchars/xml/1.1/ed2.js.map +1 -0
  2241. package/tests/node_modules/xmlchars/xmlchars.d.ts +170 -0
  2242. package/tests/node_modules/xmlchars/xmlchars.js +191 -0
  2243. package/tests/node_modules/xmlchars/xmlchars.js.map +1 -0
  2244. package/tests/node_modules/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
  2245. package/tests/node_modules/xmlchars/xmlns/1.0/ed3.js +65 -0
  2246. package/tests/node_modules/xmlchars/xmlns/1.0/ed3.js.map +1 -0
  2247. package/tests/node_modules/xtend/.jshintrc +30 -0
  2248. package/tests/node_modules/xtend/LICENCE +19 -0
  2249. package/tests/node_modules/xtend/Makefile +4 -0
  2250. package/tests/node_modules/xtend/README.md +28 -0
  2251. package/tests/node_modules/xtend/index.js +17 -0
  2252. package/tests/node_modules/xtend/mutable.js +15 -0
  2253. package/tests/node_modules/xtend/package.json +60 -0
  2254. package/tests/node_modules/xtend/test.js +63 -0
  2255. package/tests/package-lock.json +2628 -0
  2256. package/tests/package.json +15 -0
@@ -0,0 +1,841 @@
1
+ ## [1.11.3](https://github.com/iamkun/dayjs/compare/v1.11.2...v1.11.3) (2022-06-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * customParseFormat plugin to parse comma as a separator character ([#1913](https://github.com/iamkun/dayjs/issues/1913)) ([41b1405](https://github.com/iamkun/dayjs/commit/41b1405971e099431211ae6c2a100cd797da4427))
7
+ * update Dutch [nl] locale ordinal ([#1908](https://github.com/iamkun/dayjs/issues/1908)) ([5da98f8](https://github.com/iamkun/dayjs/commit/5da98f8085d2d2847d79e38c795082703a14f24b))
8
+
9
+ ## [1.11.2](https://github.com/iamkun/dayjs/compare/v1.11.1...v1.11.2) (2022-05-06)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * add OpUnitType (week) to quarterOfYear startOf/endOf types ([#1865](https://github.com/iamkun/dayjs/issues/1865)) ([400bc3e](https://github.com/iamkun/dayjs/commit/400bc3e8915e0c58e7abbfd3a1235364b1abaf3e))
15
+ * Fix type issue with ManipulateType ([#1864](https://github.com/iamkun/dayjs/issues/1864)) ([d033dfc](https://github.com/iamkun/dayjs/commit/d033dfcfc1d2ced39b2733898e8d85ad5984c9e9))
16
+ * fix UTC plugin .valueOf not taking DST into account ([#1448](https://github.com/iamkun/dayjs/issues/1448)) ([27d1c50](https://github.com/iamkun/dayjs/commit/27d1c506100ae6624f258c21cc06b24768ced733))
17
+
18
+ ## [1.11.1](https://github.com/iamkun/dayjs/compare/v1.11.0...v1.11.1) (2022-04-15)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * add Bengali (Bangladesh) [bn-bd] locale ([#1806](https://github.com/iamkun/dayjs/issues/1806)) ([840ed76](https://github.com/iamkun/dayjs/commit/840ed76eedc085afefc4dedd05f31d44196b63b0))
24
+ * refactor replace deprecated String.prototype.substr() ([#1836](https://github.com/iamkun/dayjs/issues/1836)) ([627fa39](https://github.com/iamkun/dayjs/commit/627fa393e4daf83c92431162dbe18534b23fcbae))
25
+ * Update German [de] locale, adds the abbreviations for month including a . in the end, as in September -> Sept. ([#1831](https://github.com/iamkun/dayjs/issues/1831)) ([4e2802c](https://github.com/iamkun/dayjs/commit/4e2802cc3bec2941ffb737a15fb531c90951eafe))
26
+ * update Italian (Switzerland) [it-ch] locale relativeTime ([#1829](https://github.com/iamkun/dayjs/issues/1829)) ([8e6d11d](https://github.com/iamkun/dayjs/commit/8e6d11d053393d97bee1ba411adb2d82de1a58c4))
27
+ * update Kurdish [ku] locale strings and formatted output contains non-standard kurdish characters ([#1848](https://github.com/iamkun/dayjs/issues/1848)) ([a597d0b](https://github.com/iamkun/dayjs/commit/a597d0b1b8dd28e626f8c59d326622088f7b51e7))
28
+ * update locale bo [Tibetan]: corrected the orders in formats ([#1823](https://github.com/iamkun/dayjs/issues/1823)) ([e790516](https://github.com/iamkun/dayjs/commit/e79051617af6787358f6c9b5443d987b8b53a9e1))
29
+
30
+ # [1.11.0](https://github.com/iamkun/dayjs/compare/v1.10.8...v1.11.0) (2022-03-14)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * Add Kirundi (rn) locale ([#1793](https://github.com/iamkun/dayjs/issues/1793)) ([74e5247](https://github.com/iamkun/dayjs/commit/74e5247227a779fffde39bdfcd1ee19911496709))
36
+ * add missing date shorthand D type definition ([#1752](https://github.com/iamkun/dayjs/issues/1752)) ([b045baf](https://github.com/iamkun/dayjs/commit/b045baf1646a81f7e4f446f355d02d5fb0ef4aa7))
37
+ * Add relative time to Galician (gl) and fix ordinals ([#1800](https://github.com/iamkun/dayjs/issues/1800)) ([dcbf170](https://github.com/iamkun/dayjs/commit/dcbf1708400624addfbddbc71e0f6a9ac15fa961))
38
+ * update German locales (de-at, de-ch) ([#1775](https://github.com/iamkun/dayjs/issues/1775)) ([f9055a7](https://github.com/iamkun/dayjs/commit/f9055a77bf3d84c575e5fcf99e21611138ba64d7))
39
+ * update Icelandic [is] locale relativeTime config ([#1796](https://github.com/iamkun/dayjs/issues/1796)) ([76f9e17](https://github.com/iamkun/dayjs/commit/76f9e1756de7e99c01e471dab30ea074b9ec9629))
40
+ * Update index.d.ts note ([#1716](https://github.com/iamkun/dayjs/issues/1716)) ([5a108ff](https://github.com/iamkun/dayjs/commit/5a108ff3159c53fd270ea7638f33c35c934d6457))
41
+ * Update locale German [de] monthsShort ([#1746](https://github.com/iamkun/dayjs/issues/1746)) ([4a7b7d0](https://github.com/iamkun/dayjs/commit/4a7b7d07c885bb9338514c234dbb708e24e9863e))
42
+ * update meridiem function to Kurdish (ku) locale ([#1725](https://github.com/iamkun/dayjs/issues/1725)) ([efd3904](https://github.com/iamkun/dayjs/commit/efd3904ff8cbf0a4fc064911dda76fc86b669f7b))
43
+ * update updateLocal plugin typescript types ([#1692](https://github.com/iamkun/dayjs/issues/1692)) ([c7a3f73](https://github.com/iamkun/dayjs/commit/c7a3f73064dbb63b4d365b2ad4c792f075f4d8d8))
44
+
45
+
46
+ ### Features
47
+
48
+ * Fallback to language only locale + support uppercase locales ([#1524](https://github.com/iamkun/dayjs/issues/1524)) ([9138dc2](https://github.com/iamkun/dayjs/commit/9138dc28206875372da4fb74c64716437cd11b95))
49
+
50
+ ## [1.10.8](https://github.com/iamkun/dayjs/compare/v1.10.7...v1.10.8) (2022-02-28)
51
+
52
+
53
+ ### Bug Fixes
54
+
55
+ * set locale pt, pt-br correct weekdays and months ([#1697](https://github.com/iamkun/dayjs/issues/1697)) ([e019301](https://github.com/iamkun/dayjs/commit/e01930171c8235f58a114236f146086428f99569))
56
+
57
+ ## [1.10.7](https://github.com/iamkun/dayjs/compare/v1.10.6...v1.10.7) (2021-09-10)
58
+
59
+
60
+ ### Bug Fixes
61
+
62
+ * Add Spanish (Mexico) [es-mx] locale ([#1614](https://github.com/iamkun/dayjs/issues/1614)) ([3393f2a](https://github.com/iamkun/dayjs/commit/3393f2ad55346d55902683a2e31c6f253d96c8c2))
63
+ * Add Arabic (Iraq) [ar-iq] locale ([#1627](https://github.com/iamkun/dayjs/issues/1627)) ([b5a1391](https://github.com/iamkun/dayjs/commit/b5a1391011b247d08863d291542db5937b23b427))
64
+ * add format object type to type file ([#1572](https://github.com/iamkun/dayjs/issues/1572)) ([5a79cc6](https://github.com/iamkun/dayjs/commit/5a79cc6408e825d9e123629eb44fc19c996d7751))
65
+ * duration plugin when parsing duration from ISO string, set missing components to 0 instead of NaN ([#1611](https://github.com/iamkun/dayjs/issues/1611)) ([252585b](https://github.com/iamkun/dayjs/commit/252585b4b2bd59508150e21bb994908a9d78f9b0))
66
+ * narrow type for `add` and `subtract` ([#1576](https://github.com/iamkun/dayjs/issues/1576)) ([1686962](https://github.com/iamkun/dayjs/commit/16869621b1a42563064dbf87f80c1ebfd74c1188))
67
+ * update customParseFormat plugin strict x X parsing ([#1571](https://github.com/iamkun/dayjs/issues/1571)) ([08adda5](https://github.com/iamkun/dayjs/commit/08adda54edbcca38601f57841921d0f87f84e49e))
68
+ * update Lithuanian [lt] locale spelling for single month ([#1609](https://github.com/iamkun/dayjs/issues/1609)) ([255dc54](https://github.com/iamkun/dayjs/commit/255dc54d9295de135a9037ce6ca13cae4bfd2cfb))
69
+ * Update Norwegian Bokmål [nb] local yearStart 4 ([#1608](https://github.com/iamkun/dayjs/issues/1608)) ([7a8467c](https://github.com/iamkun/dayjs/commit/7a8467c0b7d59821f7e19d4a6973bcda8e4c19b1))
70
+ * update plugin advancedFormat `isValid` validation ([#1566](https://github.com/iamkun/dayjs/issues/1566)) ([755fc8b](https://github.com/iamkun/dayjs/commit/755fc8bb1c532eb991459f180eee81367d12016c))
71
+ * update Sinhalese [si] locale month name ([#1475](https://github.com/iamkun/dayjs/issues/1475)) ([63de2a8](https://github.com/iamkun/dayjs/commit/63de2a8b7dcd7e68c132c85d88572d4c9d296907))
72
+ * update utcOffset plugin type file ([#1604](https://github.com/iamkun/dayjs/issues/1604)) ([f68e4b1](https://github.com/iamkun/dayjs/commit/f68e4b1a29fc33542f74cde10ec6d9fb045ca37e))
73
+
74
+ ## [1.10.6](https://github.com/iamkun/dayjs/compare/v1.10.5...v1.10.6) (2021-07-06)
75
+
76
+
77
+ ### Bug Fixes
78
+
79
+ * add invalid date string override ([#1465](https://github.com/iamkun/dayjs/issues/1465)) ([#1470](https://github.com/iamkun/dayjs/issues/1470)) ([06f88f4](https://github.com/iamkun/dayjs/commit/06f88f425828b1ce96b737332d25145a95a4ee9d))
80
+ * add sv-fi Finland Swedish locale ([#1522](https://github.com/iamkun/dayjs/issues/1522)) ([8e32164](https://github.com/iamkun/dayjs/commit/8e32164855cff724642e24c37a631eb4c4d760c8))
81
+ * customParseFormat support parsing X x timestamp ([#1567](https://github.com/iamkun/dayjs/issues/1567)) ([eb087f5](https://github.com/iamkun/dayjs/commit/eb087f52861313b8dd8a5c1b77858665ec72859e))
82
+ * dayjs ConfigTypeMap add null & undefined ([#1560](https://github.com/iamkun/dayjs/issues/1560)) ([b5e40e6](https://github.com/iamkun/dayjs/commit/b5e40e6f16abeaea6a0facfa466d20aefaa8a444))
83
+ * Fix DayOfYear plugin when using BadMutable plugin ([#1511](https://github.com/iamkun/dayjs/issues/1511)) ([0b0c6a3](https://github.com/iamkun/dayjs/commit/0b0c6a31ec9c0aff991b0e8dd6eed116201274cc))
84
+ * Implement ordinal in Bulgarian translation (fixes [#1501](https://github.com/iamkun/dayjs/issues/1501)) ([#1502](https://github.com/iamkun/dayjs/issues/1502)) ([b728da5](https://github.com/iamkun/dayjs/commit/b728da5ed9ed08210004ed20ce5fcd52a92de7da))
85
+ * more strict delimiter in REGEX_PARSE ([#1555](https://github.com/iamkun/dayjs/issues/1555)) ([bfdab5c](https://github.com/iamkun/dayjs/commit/bfdab5c0d45a5736b68e8e1b1354fc021e05f607))
86
+ * parameter type ([#1549](https://github.com/iamkun/dayjs/issues/1549)) ([f369844](https://github.com/iamkun/dayjs/commit/f369844dd69d253c4c7cbf68150939db3db233be))
87
+ * update customParseFormat plugin to custom two-digit year parse function ([#1421](https://github.com/iamkun/dayjs/issues/1421)) ([bb5df55](https://github.com/iamkun/dayjs/commit/bb5df55cd3975dc7638b8f4e762afa470b6620f7))
88
+ * update names of weekdays and months in Bulgarian [bg] to lowercase ([#1438](https://github.com/iamkun/dayjs/issues/1438)) ([b246210](https://github.com/iamkun/dayjs/commit/b24621091fec9cf6704de21e4b323f6f0c4abbf1))
89
+ * update type file `.diff` ([#1505](https://github.com/iamkun/dayjs/issues/1505)) ([6508494](https://github.com/iamkun/dayjs/commit/6508494a4e62977b4397baaeef293d1bcf3c7235))
90
+ * update UTC plugin type file for strict parsing ([#1443](https://github.com/iamkun/dayjs/issues/1443)) ([b4f28df](https://github.com/iamkun/dayjs/commit/b4f28df219fe63202dffdbeeaec5677c4d2c9111))
91
+
92
+ ## [1.10.5](https://github.com/iamkun/dayjs/compare/v1.10.4...v1.10.5) (2021-05-26)
93
+
94
+
95
+ ### Bug Fixes
96
+
97
+ * add meridiem in ar locales ([#1375](https://github.com/iamkun/dayjs/issues/1375)) ([319f616](https://github.com/iamkun/dayjs/commit/319f616e572a03b984013d04d1b3a18ffd5b1190))
98
+ * Added Zulu support to customParseFormat ([#1359](https://github.com/iamkun/dayjs/issues/1359)) ([1138a3f](https://github.com/iamkun/dayjs/commit/1138a3f0a76592c6d72fb86c4399e133fa41e2ec))
99
+ * fix Bengali [bn] locale monthsShort error ([a0e6c0c](https://github.com/iamkun/dayjs/commit/a0e6c0cf3e1828020dfa11432c6716990f6ed5e0))
100
+ * fix missing types for ArraySupport plugin ([#1401](https://github.com/iamkun/dayjs/issues/1401)) ([b1abdc4](https://github.com/iamkun/dayjs/commit/b1abdc40ee6c9d18ff46c311a114e0755677ea6f))
101
+ * fix Ukrainian [uk] locale ([#1463](https://github.com/iamkun/dayjs/issues/1463)) ([0fdac93](https://github.com/iamkun/dayjs/commit/0fdac93ff2531542301b76952be9b084b2e2dfa0))
102
+ * hotfix for `Duration` types ([#1357](https://github.com/iamkun/dayjs/issues/1357)) ([855b7b3](https://github.com/iamkun/dayjs/commit/855b7b3d049a3903794f91db3419f167c00dabd2)), closes [#1354](https://github.com/iamkun/dayjs/issues/1354)
103
+ * timezone plugin DST error ([#1352](https://github.com/iamkun/dayjs/issues/1352)) ([71bed15](https://github.com/iamkun/dayjs/commit/71bed155edf32bff24379930ac684fc783538d8f))
104
+ * Update duration plugin change string to number ([#1394](https://github.com/iamkun/dayjs/issues/1394)) ([e1546d1](https://github.com/iamkun/dayjs/commit/e1546d1a0cdb97ae92cf11efe61d94707af6a3a3))
105
+ * update Duration plugin to support no-argument ([#1400](https://github.com/iamkun/dayjs/issues/1400)) ([8d9a5ae](https://github.com/iamkun/dayjs/commit/8d9a5ae0749e1b4e76babd4deeaa3b1d9776c29b))
106
+ * Update Finnish [fi] locale to set yearStart ([#1378](https://github.com/iamkun/dayjs/issues/1378)) ([f3370bd](https://github.com/iamkun/dayjs/commit/f3370bda4e435118f714c8a7daf5c88cfc4b69ba))
107
+ * update Russian [ru] locale meridiem and unit tests ([#1403](https://github.com/iamkun/dayjs/issues/1403)) ([f10f39d](https://github.com/iamkun/dayjs/commit/f10f39de7db70244a3c35e4a421090a12972457b))
108
+ * update Russian [ru] locale yearStart config ([#1372](https://github.com/iamkun/dayjs/issues/1372)) ([5052515](https://github.com/iamkun/dayjs/commit/5052515fe35b2444201ef8ef87220b1876a94d0a))
109
+ * update Slovenian [sl] locale to set correct ordinal ([#1386](https://github.com/iamkun/dayjs/issues/1386)) ([cb4f746](https://github.com/iamkun/dayjs/commit/cb4f74633b3020d6dbf19548c8cb13613dafca18))
110
+ * update Spanish [es] locale to change month names to lowercase ([#1414](https://github.com/iamkun/dayjs/issues/1414)) ([9c20e77](https://github.com/iamkun/dayjs/commit/9c20e77caf7b1b5eccf418175203b198d4e29535))
111
+ * update Swedish [sv] locale to set correct yearStart ([#1385](https://github.com/iamkun/dayjs/issues/1385)) ([66c5935](https://github.com/iamkun/dayjs/commit/66c59354964ef456bcd5f6152819618f44978082))
112
+ * update UTC plugin to support string argument like +HH:mm ([#1395](https://github.com/iamkun/dayjs/issues/1395)) ([656127c](https://github.com/iamkun/dayjs/commit/656127cc44eda50923a1ac755602863fc32b9e69))
113
+
114
+ ## [1.10.4](https://github.com/iamkun/dayjs/compare/v1.10.3...v1.10.4) (2021-01-22)
115
+
116
+
117
+ ### Bug Fixes
118
+
119
+ * Correct handling negative duration ([#1317](https://github.com/iamkun/dayjs/issues/1317)) ([3f5c085](https://github.com/iamkun/dayjs/commit/3f5c085608182472f20b84766b10949945663e44))
120
+ * Improve `Duration` types ([#1338](https://github.com/iamkun/dayjs/issues/1338)) ([4aca4b1](https://github.com/iamkun/dayjs/commit/4aca4b1b584a15de1146d929f95c944594032f20))
121
+ * parse a string for MMM month format with underscore delimiter ([#1349](https://github.com/iamkun/dayjs/issues/1349)) ([82ef9a3](https://github.com/iamkun/dayjs/commit/82ef9a304f06287ac0a14c4da9a7fe6152b5fec9))
122
+ * Update Bengali [bn] locale ([#1329](https://github.com/iamkun/dayjs/issues/1329)) ([02d96ec](https://github.com/iamkun/dayjs/commit/02d96ec7189f62d6ef8987135919cbb5ceff20a6))
123
+ * update locale Portuguese [pt] yearStart ([#1345](https://github.com/iamkun/dayjs/issues/1345)) ([5c785d5](https://github.com/iamkun/dayjs/commit/5c785d528cc08811638d7cbfc7fc158d67b32d75))
124
+ * update Polish [pl] locale yearStart ([#1348](https://github.com/iamkun/dayjs/issues/1348)) ([e93e6b8](https://github.com/iamkun/dayjs/commit/e93e6b8ffa61036b26382f1763e3864d4a7d5df5))
125
+ * Update Slovenian [sl] relativeTime locale ([#1333](https://github.com/iamkun/dayjs/issues/1333)) ([fe5f1d0](https://github.com/iamkun/dayjs/commit/fe5f1d0afbe57b70339e268047e6c3028ca3d59b))
126
+
127
+ ## [1.10.3](https://github.com/iamkun/dayjs/compare/v1.10.2...v1.10.3) (2021-01-09)
128
+
129
+
130
+ ### Bug Fixes
131
+
132
+ * fix customParseFormat plugin strict mode parse meridiem bug ([#1321](https://github.com/iamkun/dayjs/issues/1321)) ([e49eeef](https://github.com/iamkun/dayjs/commit/e49eeefbe8acb36419d36ca2e7ed8bc152f73ac1))
133
+ * fix weekYear plugin missing locale bug ([#1319](https://github.com/iamkun/dayjs/issues/1319)) ([344bdc0](https://github.com/iamkun/dayjs/commit/344bdc0eed6843edb05723dc7853a41833d88f08)), closes [#1304](https://github.com/iamkun/dayjs/issues/1304)
134
+ * update advancedFormat plugin to add format options for iso week and weekyear ([#1309](https://github.com/iamkun/dayjs/issues/1309)) ([2c54c64](https://github.com/iamkun/dayjs/commit/2c54c6441871a175ac9b95e41e4cd075dbac10cb))
135
+ * update devHelper to add dev warning setting locale before loading ([c5cc893](https://github.com/iamkun/dayjs/commit/c5cc89355e1e206ca72433c19c40cb528690b04f))
136
+ * update German [de] locale yearStart ([1858df8](https://github.com/iamkun/dayjs/commit/1858df8008de56570680723df89b36a8cbc970ef)), closes [#1264](https://github.com/iamkun/dayjs/issues/1264)
137
+
138
+ ## [1.10.2](https://github.com/iamkun/dayjs/compare/v1.10.1...v1.10.2) (2021-01-05)
139
+
140
+
141
+ ### Bug Fixes
142
+
143
+ * fix parse regex bug ([#1307](https://github.com/iamkun/dayjs/issues/1307)) ([db2b6a5](https://github.com/iamkun/dayjs/commit/db2b6a5ea8e70f9fda645d113ca33495aa96b616)), closes [#1305](https://github.com/iamkun/dayjs/issues/1305)
144
+ * remove module entry in package.json to revert 1.10.1 change ([#1314](https://github.com/iamkun/dayjs/issues/1314)) ([824dcb8](https://github.com/iamkun/dayjs/commit/824dcb8dfcccf14f64b6a2741a00fcdfe53dcd98))
145
+ * update devHelper add warning "passing Year as a Number will be parsed as a Unix timestamp" ([#1315](https://github.com/iamkun/dayjs/issues/1315)) ([b0dda31](https://github.com/iamkun/dayjs/commit/b0dda3139e25441ab4e7c1f4f192dee0ecce6ef8))
146
+
147
+ ## [1.10.1](https://github.com/iamkun/dayjs/compare/v1.10.0...v1.10.1) (2021-01-03)
148
+
149
+
150
+ ### Bug Fixes
151
+
152
+ * fix typescript type error UnitTypeLongPlural ([#1302](https://github.com/iamkun/dayjs/issues/1302)) ([bfaabe4](https://github.com/iamkun/dayjs/commit/bfaabe4f398c11564eca6cda7c8aded22e1b231a)), closes [#1300](https://github.com/iamkun/dayjs/issues/1300)
153
+
154
+ # [1.10.0](https://github.com/iamkun/dayjs/compare/v1.9.8...v1.10.0) (2021-01-03)
155
+
156
+
157
+ ### Bug Fixes
158
+
159
+ * add ordinal to localeData plugin ([#1266](https://github.com/iamkun/dayjs/issues/1266)) ([fd229fa](https://github.com/iamkun/dayjs/commit/fd229fa5bd26bcba810e2535eb937ea8d99106c2))
160
+ * add preParsePostFormat plugin & update Arabic [ar] locale ([#1255](https://github.com/iamkun/dayjs/issues/1255)) ([f2e4790](https://github.com/iamkun/dayjs/commit/f2e479006a9a49bc0917f8620101d40ac645f7f2))
161
+ * add type support for plural forms of units ([#1289](https://github.com/iamkun/dayjs/issues/1289)) ([de49bb1](https://github.com/iamkun/dayjs/commit/de49bb100badfb92b9a5933cc568841f340a923f))
162
+ * escape last period to match only milliseconds ([#1239](https://github.com/iamkun/dayjs/issues/1239)) ([#1295](https://github.com/iamkun/dayjs/issues/1295)) ([64037e6](https://github.com/iamkun/dayjs/commit/64037e6a8cf303dcfd2b954f309bd9691f87fffc))
163
+
164
+
165
+ ### Features
166
+
167
+ * add ES6 Module Support, package.json module point to "esm/index.js" ([#1298](https://github.com/iamkun/dayjs/issues/1298)) ([f63375d](https://github.com/iamkun/dayjs/commit/f63375dea89becbd3bb2bb8ea7289c58c752bfed)), closes [#598](https://github.com/iamkun/dayjs/issues/598) [#313](https://github.com/iamkun/dayjs/issues/313)
168
+
169
+ ## [1.9.8](https://github.com/iamkun/dayjs/compare/v1.9.7...v1.9.8) (2020-12-27)
170
+
171
+
172
+ ### Bug Fixes
173
+
174
+ * fix Ukrainian [uk] locale typo ([1605cc0](https://github.com/iamkun/dayjs/commit/1605cc0f6fe0e9c46a92d529bc9cd6e130432337))
175
+ * update Hebrew [he] locale for double units ([#1287](https://github.com/iamkun/dayjs/issues/1287)) ([1c4b0da](https://github.com/iamkun/dayjs/commit/1c4b0da1468522e59dc9ee646d10dd2b31477d99))
176
+ * update zh locale meridiem "noon" ([0e7ff3d](https://github.com/iamkun/dayjs/commit/0e7ff3dd29ca3aed85cb76dfcb8298d326e26542))
177
+ * update zh-cn locale definition of noon ([#1278](https://github.com/iamkun/dayjs/issues/1278)) ([d5930b9](https://github.com/iamkun/dayjs/commit/d5930b96ff884f4176ca3fcb1bc95e8f1ec75c71))
178
+
179
+ ## [1.9.7](https://github.com/iamkun/dayjs/compare/v1.9.6...v1.9.7) (2020-12-05)
180
+
181
+
182
+ ### Bug Fixes
183
+
184
+ * add duration.format to format a Duration ([#1202](https://github.com/iamkun/dayjs/issues/1202)) ([9a859a1](https://github.com/iamkun/dayjs/commit/9a859a147ba223a1eeff0f2bb6f33d97e0ccc6c7))
185
+ * Add function handling for relativeTime.future and relativeTime.past ([#1197](https://github.com/iamkun/dayjs/issues/1197)) ([ef1979c](https://github.com/iamkun/dayjs/commit/ef1979ce85c61fe2d759ef3c37cb6aaf2358094f))
186
+ * avoid install installed plugin ([#1214](https://github.com/iamkun/dayjs/issues/1214)) ([a92eb6c](https://github.com/iamkun/dayjs/commit/a92eb6c4dc1437ec920e69484d52984f5921a8ea))
187
+ * avoid memory leak after installing a plugin too many times ([b8d2e32](https://github.com/iamkun/dayjs/commit/b8d2e32a9eb59661a7ed6200daa070687becaebd))
188
+ * fix diff bug when UTC plugin enabled ([#1201](https://github.com/iamkun/dayjs/issues/1201)) ([9544ed2](https://github.com/iamkun/dayjs/commit/9544ed2a6c466b8308d26b33a388a6737435a1f4)), closes [#1200](https://github.com/iamkun/dayjs/issues/1200)
189
+ * fix startOf/endOf bug in timezone plugin ([#1229](https://github.com/iamkun/dayjs/issues/1229)) ([eb5fbc4](https://github.com/iamkun/dayjs/commit/eb5fbc4c7d1b62a8615d2f263b404a9515d8e15c))
190
+ * fix utc plugin diff edge case ([#1187](https://github.com/iamkun/dayjs/issues/1187)) ([971b3d4](https://github.com/iamkun/dayjs/commit/971b3d40b4c9403165138f1034e2223cd97c3abf))
191
+ * update customParseFormat plugin to parse 2-digit offset ([#1209](https://github.com/iamkun/dayjs/issues/1209)) ([b56936a](https://github.com/iamkun/dayjs/commit/b56936ab77b8f6289a1b77d49307b495c4bf9f91)), closes [#1205](https://github.com/iamkun/dayjs/issues/1205)
192
+ * Update timezone plugin type definition ([#1221](https://github.com/iamkun/dayjs/issues/1221)) ([34cfb92](https://github.com/iamkun/dayjs/commit/34cfb920b9653ad44d4b31fe49e533692a3ce01b))
193
+
194
+ ## [1.9.6](https://github.com/iamkun/dayjs/compare/v1.9.5...v1.9.6) (2020-11-10)
195
+
196
+
197
+ ### Bug Fixes
198
+
199
+ * fix customParseFormat plugin parsing date bug ([#1198](https://github.com/iamkun/dayjs/issues/1198)) ([50f05ad](https://github.com/iamkun/dayjs/commit/50f05ad3addf27827c5657ae7519514e40d9faec)), closes [#1194](https://github.com/iamkun/dayjs/issues/1194)
200
+ * Update lv (Latvian) locale relative time ([#1192](https://github.com/iamkun/dayjs/issues/1192)) ([6d6c684](https://github.com/iamkun/dayjs/commit/6d6c6841b13ba4f7e69de92caf132a3592c5253a))
201
+
202
+ ## [1.9.5](https://github.com/iamkun/dayjs/compare/v1.9.4...v1.9.5) (2020-11-05)
203
+
204
+
205
+ ### Bug Fixes
206
+
207
+ * customParseFormat plugin supports parsing localizedFormats ([#1110](https://github.com/iamkun/dayjs/issues/1110)) ([402b603](https://github.com/iamkun/dayjs/commit/402b603aa3ee4199786950bc88b3fdc6b527aa35))
208
+ * fix customParseFormat plugin parse meridiem bug ([#1169](https://github.com/iamkun/dayjs/issues/1169)) ([9e8f8d9](https://github.com/iamkun/dayjs/commit/9e8f8d96c69d557f4d267f42567c25ae9e7ab227)), closes [#1168](https://github.com/iamkun/dayjs/issues/1168)
209
+ * fix devHelper error in umd bundle in browser ([#1165](https://github.com/iamkun/dayjs/issues/1165)) ([d11b5ee](https://github.com/iamkun/dayjs/commit/d11b5ee7dc11af671355f65ccda00f6ba42cc725))
210
+ * fix utc plugin diff bug in DST ([#1171](https://github.com/iamkun/dayjs/issues/1171)) ([f8da3fe](https://github.com/iamkun/dayjs/commit/f8da3fe7e50c84c0502bf5be0b364910922dbd79)), closes [#1097](https://github.com/iamkun/dayjs/issues/1097) [#1021](https://github.com/iamkun/dayjs/issues/1021)
211
+ * isoWeek plugin type ([#1177](https://github.com/iamkun/dayjs/issues/1177)) ([c3d0436](https://github.com/iamkun/dayjs/commit/c3d0436b06f74989e3a2c751a5d170f8072c4aad))
212
+ * update localeData plugin to support meridiem ([#1174](https://github.com/iamkun/dayjs/issues/1174)) ([fdb09e4](https://github.com/iamkun/dayjs/commit/fdb09e4074cc7e8f6196846f18d3566c1f9e8fcd)), closes [#1172](https://github.com/iamkun/dayjs/issues/1172)
213
+ * update timezone plugin parse Date instance / timestamp logic & remove useless test ([#1183](https://github.com/iamkun/dayjs/issues/1183)) ([a7f858b](https://github.com/iamkun/dayjs/commit/a7f858bb70ad81f718ba35c479e84b54eace48b2))
214
+
215
+ ## [1.9.4](https://github.com/iamkun/dayjs/compare/v1.9.3...v1.9.4) (2020-10-23)
216
+
217
+
218
+ ### Bug Fixes
219
+
220
+ * Add descriptions to types ([#1148](https://github.com/iamkun/dayjs/issues/1148)) ([9a407a1](https://github.com/iamkun/dayjs/commit/9a407a140b089345a387d1aceab4d0d1635229c7))
221
+ * add devHelper plugin ([#1163](https://github.com/iamkun/dayjs/issues/1163)) ([de49dc8](https://github.com/iamkun/dayjs/commit/de49dc80c83b85de4170571b64412bd60ada221b))
222
+ * Fix Hungarian (hu) locale ([#1112](https://github.com/iamkun/dayjs/issues/1112)) ([ab13754](https://github.com/iamkun/dayjs/commit/ab13754f43c5033dacaa0eb2042dc4ab1a7a2754))
223
+ * fix minMax plugin parsing empty array bug ([#1062](https://github.com/iamkun/dayjs/issues/1062)) ([368108b](https://github.com/iamkun/dayjs/commit/368108bc6d5cb1542f711b8eba722bd4dfaab0cd))
224
+ * update adding/subtracting Duration from Dayjs object ([#1156](https://github.com/iamkun/dayjs/issues/1156)) ([f861aca](https://github.com/iamkun/dayjs/commit/f861acac3e83e28d3a4a96312c71119fd6b544fc))
225
+ * update en-NZ locale to use proper ordinal formatting function ([#1143](https://github.com/iamkun/dayjs/issues/1143)) ([fcdbc58](https://github.com/iamkun/dayjs/commit/fcdbc5880710456a29b2bacf250542230bf48b99))
226
+ * update localeData plugin type ([#1116](https://github.com/iamkun/dayjs/issues/1116)) ([ee5a4ec](https://github.com/iamkun/dayjs/commit/ee5a4ec41edddfb57d103c35182dc635c9264a10))
227
+ * update timezone plugin to support custom parse format ([#1160](https://github.com/iamkun/dayjs/issues/1160)) ([48cbf31](https://github.com/iamkun/dayjs/commit/48cbf3118ba5427de428777c2e025896db654f2e)), closes [#1159](https://github.com/iamkun/dayjs/issues/1159)
228
+ * update timezone plugin to support keepLocalTime ([#1161](https://github.com/iamkun/dayjs/issues/1161)) ([1d429e5](https://github.com/iamkun/dayjs/commit/1d429e5fe4467ebddcf81b43cf6f36e5e3be944c)), closes [#1149](https://github.com/iamkun/dayjs/issues/1149)
229
+
230
+ ## [1.9.3](https://github.com/iamkun/dayjs/compare/v1.9.2...v1.9.3) (2020-10-13)
231
+
232
+
233
+ ### Bug Fixes
234
+
235
+ * fix localizedFormat export error ([#1133](https://github.com/iamkun/dayjs/issues/1133)) ([deecd6a](https://github.com/iamkun/dayjs/commit/deecd6ab8a2f4173ee7046f6b568b41fd2677531)), closes [#1132](https://github.com/iamkun/dayjs/issues/1132)
236
+
237
+ ## [1.9.2](https://github.com/iamkun/dayjs/compare/v1.9.1...v1.9.2) (2020-10-13)
238
+
239
+
240
+ ### Bug Fixes
241
+
242
+ * add arraySupport plugin ([#1129](https://github.com/iamkun/dayjs/issues/1129)) ([be505c2](https://github.com/iamkun/dayjs/commit/be505c2c540261027342cecc55d8919a3d18d893))
243
+ * export type of duration plugin ([#1094](https://github.com/iamkun/dayjs/issues/1094)) ([2c92e71](https://github.com/iamkun/dayjs/commit/2c92e71bf55d09601120cdf433da7a19cc8abff6))
244
+ * Fix LocaleData plugin longDateFormat lowercase error ([#1101](https://github.com/iamkun/dayjs/issues/1101)) ([7937ccd](https://github.com/iamkun/dayjs/commit/7937ccdeac47d094a60e65ebb62a6020b81c46f4))
245
+ * Fix objectSupport plugin bug in UTC ([#1107](https://github.com/iamkun/dayjs/issues/1107)) ([fe90bb6](https://github.com/iamkun/dayjs/commit/fe90bb6944f2ff1969ca975954d303b449dfa95b)), closes [#1105](https://github.com/iamkun/dayjs/issues/1105)
246
+ * fix Serbian locale grammar (sr, sr-cyrl) ([#1108](https://github.com/iamkun/dayjs/issues/1108)) ([cc87eff](https://github.com/iamkun/dayjs/commit/cc87eff8b75b0d86ce0956516319d402bccae6c0))
247
+ * Fix typo for "monday" in arabic ([#1067](https://github.com/iamkun/dayjs/issues/1067)) ([2e1e426](https://github.com/iamkun/dayjs/commit/2e1e42650124f30282dc4d710798d576b928f1c7))
248
+ * support dayjs.add(Duration), dayjs.subtract(Duration) ([#1099](https://github.com/iamkun/dayjs/issues/1099)) ([b1a0294](https://github.com/iamkun/dayjs/commit/b1a02942c5238203aaa04ce9a074c73742324ab7))
249
+ * update Breton [br] locale relativeTime config ([#1103](https://github.com/iamkun/dayjs/issues/1103)) ([b038bfd](https://github.com/iamkun/dayjs/commit/b038bfdb128889d677c95534d2be29cc30c9e72f))
250
+ * update Catalan [ca] locale ordinal ([73da380](https://github.com/iamkun/dayjs/commit/73da38024c8b550bdcfbe3ff7e578e742c7aecf2))
251
+ * update German [de] locale relativeTime config ([#1109](https://github.com/iamkun/dayjs/issues/1109)) ([f6e771b](https://github.com/iamkun/dayjs/commit/f6e771b70f93d19ebb12e6b794aa4628a1796248))
252
+ * update localeData plugin to add longDateFormat to global localeData ([#1106](https://github.com/iamkun/dayjs/issues/1106)) ([16937d1](https://github.com/iamkun/dayjs/commit/16937d16e053b8c1d4a607622fa2fdbfd9809832))
253
+ * Update objectSupport plugin to return current date time while parsing empty object ([f56783e](https://github.com/iamkun/dayjs/commit/f56783e14d8cf50916b015e7188b23bb6fbca839))
254
+
255
+ ## [1.9.1](https://github.com/iamkun/dayjs/compare/v1.9.0...v1.9.1) (2020-09-28)
256
+
257
+
258
+ ### Bug Fixes
259
+
260
+ * Fix objectSupport plugin to get the correct result (zero-based month) ([#1089](https://github.com/iamkun/dayjs/issues/1089)) ([f95ac15](https://github.com/iamkun/dayjs/commit/f95ac15a4577ae5a3d1ce353872a2cd9fc454bc2))
261
+
262
+ # [1.9.0](https://github.com/iamkun/dayjs/compare/v1.8.36...v1.9.0) (2020-09-28)
263
+
264
+
265
+ ### Bug Fixes
266
+
267
+ * Add `setDefault` typing to timezone.d.ts ([#1057](https://github.com/iamkun/dayjs/issues/1057)) ([c0f0886](https://github.com/iamkun/dayjs/commit/c0f088620f17260e6e3ebce7697d561b5623f5f3))
268
+ * fix DST bug in utc plugin ([#1053](https://github.com/iamkun/dayjs/issues/1053)) ([3d73543](https://github.com/iamkun/dayjs/commit/3d7354361f042ced1176d91f9ae9edffe6173425))
269
+ * Fix optional type for timezone plugin ([#1081](https://github.com/iamkun/dayjs/issues/1081)) ([a6ebcf2](https://github.com/iamkun/dayjs/commit/a6ebcf283a83273562dce5663155e3b3a12ea9a5)), closes [#1079](https://github.com/iamkun/dayjs/issues/1079)
270
+ * Fix timezone plugin conversion bug ([#1073](https://github.com/iamkun/dayjs/issues/1073)) ([16816a3](https://github.com/iamkun/dayjs/commit/16816a31ff43220aca9d1d179df6b729182abb55))
271
+ * update duration plugin type file ([#1065](https://github.com/iamkun/dayjs/issues/1065)) ([94af9af](https://github.com/iamkun/dayjs/commit/94af9af27c5bc182cbb24f1845e561dd1d82d776))
272
+ * update timezone plugin to support getting offset name e.g. EST ([#1069](https://github.com/iamkun/dayjs/issues/1069)) ([cbb755e](https://github.com/iamkun/dayjs/commit/cbb755e5c68d49c5678291f3ce832b32831a056e))
273
+ * update utc plugin to support keepLocalTime `.utc(true)` ([#1080](https://github.com/iamkun/dayjs/issues/1080)) ([5ce4e0d](https://github.com/iamkun/dayjs/commit/5ce4e0d2f552f3645262537ff7afdc946f5a7e72))
274
+
275
+
276
+ ### Features
277
+
278
+ * Correct casing for en-sg locale name ([#1048](https://github.com/iamkun/dayjs/issues/1048)) ([2edaddc](https://github.com/iamkun/dayjs/commit/2edaddc22a7eb914f915531f389766217acd7034))
279
+
280
+ ## [1.8.36](https://github.com/iamkun/dayjs/compare/v1.8.35...v1.8.36) (2020-09-17)
281
+
282
+
283
+ ### Bug Fixes
284
+
285
+ * Add Amharic (am) locale ([#1046](https://github.com/iamkun/dayjs/issues/1046)) ([cdc49a1](https://github.com/iamkun/dayjs/commit/cdc49a1911c74b7ea96ed222f42796d53715cfed))
286
+ * Export Duration type in duration plugin ([#1043](https://github.com/iamkun/dayjs/issues/1043)) ([0f20c3a](https://github.com/iamkun/dayjs/commit/0f20c3ac75d9ac1026a15a7bb343d3a150d9b30f))
287
+ * Fix duration plugin parsing milliseconds bug ([#1042](https://github.com/iamkun/dayjs/issues/1042)) ([fe2301b](https://github.com/iamkun/dayjs/commit/fe2301b22318886aaa89ed1620e0a118e98c2b8a))
288
+ * Timezone plugin set default timezone ([#1033](https://github.com/iamkun/dayjs/issues/1033)) ([0c2050a](https://github.com/iamkun/dayjs/commit/0c2050a152da708b01edd6150a5013f642b14576))
289
+ * Timezone plugin should have the same behavior in latest ICU version ([#1032](https://github.com/iamkun/dayjs/issues/1032)) ([de31592](https://github.com/iamkun/dayjs/commit/de315921575cc50c38464b27d0338e30a54d8e2a))
290
+ * Update Finnish (fi) locale ([#963](https://github.com/iamkun/dayjs/issues/963)) ([cf8b6a0](https://github.com/iamkun/dayjs/commit/cf8b6a096f24b54cbdb95675ac386d8ac85ea616))
291
+ * Update Polish (pl) , Hungarian (hr) and Lithuanian (lt) localization ([#1045](https://github.com/iamkun/dayjs/issues/1045)) ([638fd39](https://github.com/iamkun/dayjs/commit/638fd394fc24f4188390faf387da6b156e7c6320))
292
+
293
+ ## [1.8.35](https://github.com/iamkun/dayjs/compare/v1.8.34...v1.8.35) (2020-09-02)
294
+
295
+
296
+ ### Bug Fixes
297
+
298
+ * Fix BadMutable plugin bug in .diff ([#1023](https://github.com/iamkun/dayjs/issues/1023)) ([40ab6d9](https://github.com/iamkun/dayjs/commit/40ab6d9a53e8047cfca63c611c25dd045372d021))
299
+ * fix LocaleData plugin to support instance.weekdays() API ([#1019](https://github.com/iamkun/dayjs/issues/1019)) ([a09d259](https://github.com/iamkun/dayjs/commit/a09d259a407b81d1cb6bb5623fad551c775d8674)), closes [#1017](https://github.com/iamkun/dayjs/issues/1017)
300
+ * Update Dutch (nl) locale to set correct yearStart ([1533a2c](https://github.com/iamkun/dayjs/commit/1533a2cc1475270032da2d87b19fc3d62327e6e3))
301
+
302
+ ## [1.8.34](https://github.com/iamkun/dayjs/compare/v1.8.33...v1.8.34) (2020-08-20)
303
+
304
+
305
+ ### Bug Fixes
306
+
307
+ * Fix Timezone plugin to preserve milliseconds while changing timezone ([#1003](https://github.com/iamkun/dayjs/issues/1003)) ([5f446ed](https://github.com/iamkun/dayjs/commit/5f446eda770fa97e895c81a8195b3ba5d082cef0)), closes [#1002](https://github.com/iamkun/dayjs/issues/1002)
308
+ * support parsing unlimited decimals of millisecond ([#1010](https://github.com/iamkun/dayjs/issues/1010)) ([d1bdd36](https://github.com/iamkun/dayjs/commit/d1bdd36a56e3d1786523a180e3fc18068f609135)), closes [#544](https://github.com/iamkun/dayjs/issues/544)
309
+ * update Duration plugin to support global locale ([#1008](https://github.com/iamkun/dayjs/issues/1008)) ([1c49c83](https://github.com/iamkun/dayjs/commit/1c49c83e79811eede13db6372b5d65db598aee77)), closes [#1007](https://github.com/iamkun/dayjs/issues/1007)
310
+
311
+ ## [1.8.33](https://github.com/iamkun/dayjs/compare/v1.8.32...v1.8.33) (2020-08-10)
312
+
313
+
314
+ ### Bug Fixes
315
+
316
+ * Add PluralGetSet plugin for plural getters/setters ([#996](https://github.com/iamkun/dayjs/issues/996)) ([f76e3ce](https://github.com/iamkun/dayjs/commit/f76e3ce2fbe5d3e9ed9121086baf55eb0cc4d355))
317
+ * Add typescript type defs in esm build ([#985](https://github.com/iamkun/dayjs/issues/985)) ([50e3b3c](https://github.com/iamkun/dayjs/commit/50e3b3c6719cb0b4ec6eff394dacd63d5db8f253))
318
+ * Fix isoWeek Plugin cal bug in UTC mode ([#993](https://github.com/iamkun/dayjs/issues/993)) ([f2e5f32](https://github.com/iamkun/dayjs/commit/f2e5f327aaf12b4572296ec6e107ecc05fcf76e7))
319
+ * Fix Timezone plugin parsing js date, Day.js object, timestamp bug && update type file ([#994](https://github.com/iamkun/dayjs/issues/994)) ([22f3d49](https://github.com/iamkun/dayjs/commit/22f3d49405da98db6da56d1673eebcd01b57554b)), closes [#992](https://github.com/iamkun/dayjs/issues/992) [#989](https://github.com/iamkun/dayjs/issues/989)
320
+ * Fix Timezone plugin UTCOffset rounding bug ([#987](https://github.com/iamkun/dayjs/issues/987)) ([b07182b](https://github.com/iamkun/dayjs/commit/b07182bbdf5aef7f6bf1e88fcd38432e2b8ee465)), closes [#986](https://github.com/iamkun/dayjs/issues/986)
321
+ * Fix UTC plugin bug while comparing an utc instance to a local one ([#995](https://github.com/iamkun/dayjs/issues/995)) ([747c0fb](https://github.com/iamkun/dayjs/commit/747c0fb4eba6353755b5dad3417fd8d5a408c378))
322
+ * Update pt-br locale weekStart 0 ([#984](https://github.com/iamkun/dayjs/issues/984)) ([0f881c1](https://github.com/iamkun/dayjs/commit/0f881c18efb02b9d0ba7f76cba92bb504226fa95))
323
+
324
+ ## [1.8.32](https://github.com/iamkun/dayjs/compare/v1.8.31...v1.8.32) (2020-08-04)
325
+
326
+
327
+ ### Bug Fixes
328
+
329
+ * Add Experimental Timezone Plugin ([#974](https://github.com/iamkun/dayjs/issues/974)) ([e69caba](https://github.com/iamkun/dayjs/commit/e69caba1b0957241a855aa0ae38db899fa2c3795))
330
+ * fix parse date string error e.g. '2020/9/30' ([#980](https://github.com/iamkun/dayjs/issues/980)) ([231790d](https://github.com/iamkun/dayjs/commit/231790da62af0494732960c2c50d86ae9bf63ec6)), closes [#979](https://github.com/iamkun/dayjs/issues/979)
331
+ * update monthDiff function to get more accurate results ([19e8a7f](https://github.com/iamkun/dayjs/commit/19e8a7f2f7582b717f49d446822e39603694433c))
332
+ * Update UTC plugin to support keepLocalTime ([#973](https://github.com/iamkun/dayjs/issues/973)) ([9f488e5](https://github.com/iamkun/dayjs/commit/9f488e5aca92f0b4c2951459436829d79f86d8d7))
333
+
334
+ ## [1.8.31](https://github.com/iamkun/dayjs/compare/v1.8.30...v1.8.31) (2020-07-29)
335
+
336
+
337
+ ### Bug Fixes
338
+
339
+ * Rollback LocalePresetType to string ([#968](https://github.com/iamkun/dayjs/issues/968)) ([b342bd3](https://github.com/iamkun/dayjs/commit/b342bd3d84987d6c7587a0c4590d614fb0e670d7))
340
+ * Update Regex to parse 'YYYY' correctly ([#969](https://github.com/iamkun/dayjs/issues/969)) ([70c1239](https://github.com/iamkun/dayjs/commit/70c123990dcc6bd479fa2b5d7f9985127872a826))
341
+
342
+ ## [1.8.30](https://github.com/iamkun/dayjs/compare/v1.8.29...v1.8.30) (2020-07-22)
343
+
344
+
345
+ ### Bug Fixes
346
+
347
+ * Add Haitian Creole (ht) and Spanish Puerto Rico (es-pr) locale configs ([#958](https://github.com/iamkun/dayjs/issues/958)) ([b2642e2](https://github.com/iamkun/dayjs/commit/b2642e2d1f87734a34808c66e5176cb18bc0414d))
348
+ * Fix UTC plugin wrong hour bug while adding month or year ([#957](https://github.com/iamkun/dayjs/issues/957)) ([28ae070](https://github.com/iamkun/dayjs/commit/28ae070024ff26685c88ce4cc8747307e86923c9))
349
+ * Update French (fr) locale to set correct yearStart ([14ab808](https://github.com/iamkun/dayjs/commit/14ab808a7b7e226f2eb2cbe894916a18ed5d967d)), closes [#956](https://github.com/iamkun/dayjs/issues/956)
350
+
351
+ ## [1.8.29](https://github.com/iamkun/dayjs/compare/v1.8.28...v1.8.29) (2020-07-02)
352
+
353
+
354
+ ### Bug Fixes
355
+
356
+ * Duration plugin supports parse ISO string with week (W) ([#950](https://github.com/iamkun/dayjs/issues/950)) ([f0fc12a](https://github.com/iamkun/dayjs/commit/f0fc12adadcab53fb0577ad8f5e2f1cf784fd8f5))
357
+ * LocaleData plugin supports locale order ([#938](https://github.com/iamkun/dayjs/issues/938)) ([62f429d](https://github.com/iamkun/dayjs/commit/62f429db73a0a069b1267231dea172b85f4b90e3)), closes [#936](https://github.com/iamkun/dayjs/issues/936)
358
+ * Update type definition to support array format ([#945](https://github.com/iamkun/dayjs/issues/945)) ([81d4740](https://github.com/iamkun/dayjs/commit/81d4740511d47e34f891b21afeb0449ef8a28688)), closes [#944](https://github.com/iamkun/dayjs/issues/944)
359
+ * Update type definition to support strict mode ([#951](https://github.com/iamkun/dayjs/issues/951)) ([8d54f3f](https://github.com/iamkun/dayjs/commit/8d54f3f7d4d161e72c767fa09699e70a2b3d681c))
360
+
361
+ ## [1.8.28](https://github.com/iamkun/dayjs/compare/v1.8.27...v1.8.28) (2020-05-28)
362
+
363
+
364
+ ### Bug Fixes
365
+
366
+ * Fix CustomParseFormat plugin month index error ([#918](https://github.com/iamkun/dayjs/issues/918)) ([fa2ec7f](https://github.com/iamkun/dayjs/commit/fa2ec7fcb980dcd2c7498dafe2f9ca2e52d735cf)), closes [#915](https://github.com/iamkun/dayjs/issues/915)
367
+ * Update Ukrainian (uk) locale monthFormat and monthStandalone ([#899](https://github.com/iamkun/dayjs/issues/899)) ([a08756e](https://github.com/iamkun/dayjs/commit/a08756e80bd1d7126fca28c5ad9e382613fc86c4))
368
+
369
+ ## [1.8.27](https://github.com/iamkun/dayjs/compare/v1.8.26...v1.8.27) (2020-05-14)
370
+
371
+
372
+ ### Bug Fixes
373
+
374
+ * Add Kinyarwanda (rw) locale ([#903](https://github.com/iamkun/dayjs/issues/903)) ([f355235](https://github.com/iamkun/dayjs/commit/f355235a836540d77880959fb1b614c87e9f7b3e))
375
+ * Add plugin objectSupport ([#887](https://github.com/iamkun/dayjs/issues/887)) ([52dfb13](https://github.com/iamkun/dayjs/commit/52dfb13a6b84f0a753cc5761192b92416f440961))
376
+ * Add Turkmen (tk) locale ([#893](https://github.com/iamkun/dayjs/issues/893)) ([a9ca8dc](https://github.com/iamkun/dayjs/commit/a9ca8dcbbd0964c5b9abb4e8a2d620c983cf091a))
377
+ * Fix CustomParseFormat plugin set locale error ([#896](https://github.com/iamkun/dayjs/issues/896)) ([8035c8a](https://github.com/iamkun/dayjs/commit/8035c8a760549b631252252718db3cdc4ab2f68f))
378
+ * Fix locale month function bug ([#908](https://github.com/iamkun/dayjs/issues/908)) ([bf347c3](https://github.com/iamkun/dayjs/commit/bf347c36e401f50727fb5afcc537497b54b90d6b))
379
+ * Update CustomParseFormat plugin to support Array formats ([#906](https://github.com/iamkun/dayjs/issues/906)) ([97856c6](https://github.com/iamkun/dayjs/commit/97856c603ef5fbbeb1cf8a42387479e56a77dbe8))
380
+
381
+ ## [1.8.26](https://github.com/iamkun/dayjs/compare/v1.8.25...v1.8.26) (2020-04-30)
382
+
383
+
384
+ ### Bug Fixes
385
+
386
+ * Fix Duration plugin `.toISOString` format bug ([#889](https://github.com/iamkun/dayjs/issues/889)) ([058d624](https://github.com/iamkun/dayjs/commit/058d624808fd2be024ae846bcb2e03885f39b556)), closes [#888](https://github.com/iamkun/dayjs/issues/888)
387
+ * Fix WeekOfYear plugin bug while using BadMutable plugin ([#884](https://github.com/iamkun/dayjs/issues/884)) ([2977438](https://github.com/iamkun/dayjs/commit/2977438458542573a4500e21f7ba5d1f8442960e))
388
+ * Update CustomParseFormat plugin strict mode ([#882](https://github.com/iamkun/dayjs/issues/882)) ([db642ac](https://github.com/iamkun/dayjs/commit/db642ac73e52e00d8c41546b2935c9e691cf66e0))
389
+ * Update RelativeTime plugin default config ([#883](https://github.com/iamkun/dayjs/issues/883)) ([0606f42](https://github.com/iamkun/dayjs/commit/0606f425aef8ccbfc3da3e43cba368130603b0cc))
390
+
391
+ ## [1.8.25](https://github.com/iamkun/dayjs/compare/v1.8.24...v1.8.25) (2020-04-21)
392
+
393
+
394
+ ### Bug Fixes
395
+
396
+ * Fix CustomParseFormat plugin of parsing only YYYY / YYYY-MM bug ([#873](https://github.com/iamkun/dayjs/issues/873)) ([3cea04d](https://github.com/iamkun/dayjs/commit/3cea04d33d54d44bbdd3d026b5c7f67ebf176116)), closes [#849](https://github.com/iamkun/dayjs/issues/849)
397
+ * Fix Duration plugin get seconds ([#867](https://github.com/iamkun/dayjs/issues/867)) ([62b092d](https://github.com/iamkun/dayjs/commit/62b092d9f9a3db5506ef01f798bdf211f163f53f))
398
+ * Fix type definition of locale ([9790b85](https://github.com/iamkun/dayjs/commit/9790b853e6113243a7f4a81dd12c6509e406a102))
399
+ * Fix UTC plugin startOf, endOf bug ([#872](https://github.com/iamkun/dayjs/issues/872)) ([4141084](https://github.com/iamkun/dayjs/commit/4141084ba96d35cadcda3f1e661bf1d0f6c8e4de)), closes [#809](https://github.com/iamkun/dayjs/issues/809) [#808](https://github.com/iamkun/dayjs/issues/808)
400
+
401
+ ## [1.8.24](https://github.com/iamkun/dayjs/compare/v1.8.23...v1.8.24) (2020-04-10)
402
+
403
+
404
+ ### Bug Fixes
405
+
406
+ * Add config option to RelativeTime plugin ([#851](https://github.com/iamkun/dayjs/issues/851)) ([bd24034](https://github.com/iamkun/dayjs/commit/bd24034b95bfc656024b75ef3f3c986708845fed))
407
+ * add Duration plugin ([#858](https://github.com/iamkun/dayjs/issues/858)) ([d568273](https://github.com/iamkun/dayjs/commit/d568273223199ca0497f238e2cc3a8d3dcf32d0f))
408
+ * Add en-in, en-tt locales ([#855](https://github.com/iamkun/dayjs/issues/855)) ([c39fb96](https://github.com/iamkun/dayjs/commit/c39fb96e2a9102c14b004c14a6c073af9d266f2f))
409
+ * add isToday, isTomorrow, isYesterday plugins ([#857](https://github.com/iamkun/dayjs/issues/857)) ([fc08ab6](https://github.com/iamkun/dayjs/commit/fc08ab68f8a28269802deeab9d6b0473b92cdc51))
410
+ * Add option callback to Calendar plugin ([#839](https://github.com/iamkun/dayjs/issues/839)) ([b25be90](https://github.com/iamkun/dayjs/commit/b25be9094325295310c8fc5e617fb058be8a5f68))
411
+ * Fix monthsShort for locale fr ([#862](https://github.com/iamkun/dayjs/issues/862)) ([d2de9a0](https://github.com/iamkun/dayjs/commit/d2de9a0b44b830038ed0094f79bfd40726311f2a))
412
+ * Update Breton locale (br) meridiem config ([#856](https://github.com/iamkun/dayjs/issues/856)) ([a2a6672](https://github.com/iamkun/dayjs/commit/a2a66720abb788a8f1cffbfd0929b35579f29c72))
413
+ * Update Ukrainian (uk) locale relative time ([#842](https://github.com/iamkun/dayjs/issues/842)) ([578bc1a](https://github.com/iamkun/dayjs/commit/578bc1a23c6e737783bbac3da12c0ed5d1edcf82))
414
+
415
+ ## [1.8.23](https://github.com/iamkun/dayjs/compare/v1.8.22...v1.8.23) (2020-03-16)
416
+
417
+
418
+ ### Bug Fixes
419
+
420
+ * Add Chinese (zh) locale ([f9b8945](https://github.com/iamkun/dayjs/commit/f9b89453166d8b53d33b1d7eefd9942022552e6e))
421
+ * Fix IsoWeek plugin typescript definition ([#828](https://github.com/iamkun/dayjs/issues/828)) ([30aab0c](https://github.com/iamkun/dayjs/commit/30aab0c7bce85dfac0ae208a891def30f88b5cb4))
422
+ * Update Arabic (ar) locale relative time ([#836](https://github.com/iamkun/dayjs/issues/836)) ([14044c6](https://github.com/iamkun/dayjs/commit/14044c6fda1229e3f0e5473d3f886bd79589b15f))
423
+ * Update Slovak (sk) locale, Czech (cs) locale ([#833](https://github.com/iamkun/dayjs/issues/833)) ([f0d451f](https://github.com/iamkun/dayjs/commit/f0d451f795e9ebf752cd854d51b25b11de2343a3))
424
+ * Update Thai (th) locale relativeTime ([#826](https://github.com/iamkun/dayjs/issues/826)) ([63b7c03](https://github.com/iamkun/dayjs/commit/63b7c03a6dbb0507d60776e8bad6cccde3828b88)), closes [#816](https://github.com/iamkun/dayjs/issues/816)
425
+
426
+ ## [1.8.22](https://github.com/iamkun/dayjs/compare/v1.8.21...v1.8.22) (2020-03-08)
427
+
428
+
429
+ ### Bug Fixes
430
+
431
+ * Add IsoWeek plugin ([#811](https://github.com/iamkun/dayjs/issues/811)) ([28a2207](https://github.com/iamkun/dayjs/commit/28a2207ef9849afbac15dd29267b2e7a09cd3c16))
432
+ * Fix unsupported locale fallback to previous one ([#819](https://github.com/iamkun/dayjs/issues/819)) ([4868715](https://github.com/iamkun/dayjs/commit/48687152cf5bee6a4c1b8ceea4bda8b9bab9be10))
433
+
434
+ ## [1.8.21](https://github.com/iamkun/dayjs/compare/v1.8.20...v1.8.21) (2020-02-26)
435
+
436
+
437
+ ### Bug Fixes
438
+
439
+ * Set + Get accept 'D' as the short version of 'date' ([#795](https://github.com/iamkun/dayjs/issues/795)) ([523c038](https://github.com/iamkun/dayjs/commit/523c03880fa8bbad83214494ad02cd606cdb8b30))
440
+ * Update DayOfYear plugin type ([#799](https://github.com/iamkun/dayjs/issues/799)) ([5809652](https://github.com/iamkun/dayjs/commit/5809652e40245b7759827d9bf317abdcfa75a330))
441
+ * Update fi (Finnish) locale relativeTime ([#797](https://github.com/iamkun/dayjs/issues/797)) ([4a470fb](https://github.com/iamkun/dayjs/commit/4a470fbd6fef9e051727d0f26d53cc050b85935d))
442
+
443
+ ## [1.8.20](https://github.com/iamkun/dayjs/compare/v1.8.19...v1.8.20) (2020-02-04)
444
+
445
+
446
+ ### Bug Fixes
447
+
448
+ * Add Bislama Locale (bi) ([#780](https://github.com/iamkun/dayjs/issues/780)) ([9ac6ab4](https://github.com/iamkun/dayjs/commit/9ac6ab481bc883dd4ecc02caab12c8b2fc218a42))
449
+ * Fix weekOfYear plugin to support yearStart locale for better week number result ([#769](https://github.com/iamkun/dayjs/issues/769)) ([f00db36](https://github.com/iamkun/dayjs/commit/f00db36e70bc7beaca1abadeb30a9b1fbb3261ee))
450
+ * Update et (Estonian) locale relativeTime ([#790](https://github.com/iamkun/dayjs/issues/790)) ([d8e0f45](https://github.com/iamkun/dayjs/commit/d8e0f45f6cd2d5e5704b9797929227454c92d1a5))
451
+ * Update LocaleData plugin to support dayjs.localeData().weekdays() API ([287fed6](https://github.com/iamkun/dayjs/commit/287fed6db9eb4fd979b4861aca4dacbd32422533)), closes [#779](https://github.com/iamkun/dayjs/issues/779)
452
+ * Update LocaleData plugin to support dayjs.months dayjs.weekdays API ([144c2ae](https://github.com/iamkun/dayjs/commit/144c2ae6e15fbf89e3acd7c8cb9e237c5f6e1348)), closes [#779](https://github.com/iamkun/dayjs/issues/779)
453
+ * Update pl locale fusional config ([d372475](https://github.com/iamkun/dayjs/commit/d3724758bb27d5b17587b995ba14e7e80dcd1151))
454
+
455
+ ## [1.8.19](https://github.com/iamkun/dayjs/compare/v1.8.18...v1.8.19) (2020-01-06)
456
+
457
+
458
+ ### Bug Fixes
459
+
460
+ * Add UpdateLocale plugin to update a locale's properties ([#766](https://github.com/iamkun/dayjs/issues/766)) ([82ce2ba](https://github.com/iamkun/dayjs/commit/82ce2ba8d7e402e40f6d005d400eb5356a0b0633))
461
+ * Fix CustomParseFormat Plugin 'YYYY-MM' use first day of the month ([ba709ec](https://github.com/iamkun/dayjs/commit/ba709eca86a71ae648bc68bf67d9abdc229198d4)), closes [#761](https://github.com/iamkun/dayjs/issues/761)
462
+ * Fix CustomParseFormat Plugin to set correct locale ([66ce23f](https://github.com/iamkun/dayjs/commit/66ce23f2e18c5506e8f1a7ef20d3483a4df80087))
463
+ * Fix WeekOfYear Plugin wrong calender week number bug ([79b86db](https://github.com/iamkun/dayjs/commit/79b86dbbf3cfd3f1e2165b3d479a7061ad1b6925)), closes [#760](https://github.com/iamkun/dayjs/issues/760)
464
+ * Update RelativeTime plugin to support function to make additional processing ([#767](https://github.com/iamkun/dayjs/issues/767)) ([4bd9250](https://github.com/iamkun/dayjs/commit/4bd9250fbe7131e2fddfb5fa1b3350e8c2262ca9))
465
+ * Update ru, uk, cs locale to support relativeTime with plural ([3f080f7](https://github.com/iamkun/dayjs/commit/3f080f7d6bfdc4018cbb7c4d0112ff1ead4ef6b8))
466
+
467
+ ## [1.8.18](https://github.com/iamkun/dayjs/compare/v1.8.17...v1.8.18) (2019-12-18)
468
+
469
+
470
+ ### Bug Fixes
471
+
472
+ * Add missing locale type definition ([#716](https://github.com/iamkun/dayjs/issues/716)) ([cde5d0b](https://github.com/iamkun/dayjs/commit/cde5d0b91be7b2f5f3098de4aa0b9a4f0f28ea5c))
473
+ * Fix .locale() handel unsupported locale ([78ec173](https://github.com/iamkun/dayjs/commit/78ec173fcecc1299516ab7b44f4554d431b4b2fd))
474
+ * Update Italian locale (it) ([#727](https://github.com/iamkun/dayjs/issues/727)) ([5b53e98](https://github.com/iamkun/dayjs/commit/5b53e98c0a3ba0eb9573a9c77caeb907439be9e7))
475
+ * Update locale (fa) ([#733](https://github.com/iamkun/dayjs/issues/733)) ([9ad2e47](https://github.com/iamkun/dayjs/commit/9ad2e47e0569b23991bb0d5578f49c792c12df08))
476
+ * Update locale (zh-cn) ([#706](https://github.com/iamkun/dayjs/issues/706)) ([e31e544](https://github.com/iamkun/dayjs/commit/e31e54414fb90e1f54da13a117748ba37f52645d))
477
+ * Update locale (zh-cn) meridiem ([#735](https://github.com/iamkun/dayjs/issues/735)) ([15d1b81](https://github.com/iamkun/dayjs/commit/15d1b813e7faf5a1f9d1ea6fc673fd27ac49d8b1))
478
+ * Update LocaleData plugin to support dayjs().longDateFormat() ([#734](https://github.com/iamkun/dayjs/issues/734)) ([aa0f210](https://github.com/iamkun/dayjs/commit/aa0f210a1e3c4f6aba61c3b96f9eb445b43a33f0)), closes [#680](https://github.com/iamkun/dayjs/issues/680)
479
+ * Update Mongolian (mn) locale relativeTime ([#753](https://github.com/iamkun/dayjs/issues/753)) ([6d51435](https://github.com/iamkun/dayjs/commit/6d51435092c0c94d8e50256d3f0f058cdd15febe))
480
+ * Update Swedish locale (sv) fix ordinal error ([#745](https://github.com/iamkun/dayjs/issues/745)) ([49670d5](https://github.com/iamkun/dayjs/commit/49670d5ae31e4e21636cc5a8bfe35fef0f6d9e4a)), closes [#743](https://github.com/iamkun/dayjs/issues/743)
481
+
482
+ ## [1.8.17](https://github.com/iamkun/dayjs/compare/v1.8.16...v1.8.17) (2019-11-06)
483
+
484
+
485
+ ### Bug Fixes
486
+
487
+ * Fix set utcOffset in utc mode ([d148115](https://github.com/iamkun/dayjs/commit/d148115dad8f1a5afc0a64e9b8163dfeba4616b6))
488
+ * Update advancedFormat plugin to support w ww wo week tokens … ([#678](https://github.com/iamkun/dayjs/issues/678)) ([26cfa63](https://github.com/iamkun/dayjs/commit/26cfa63a524b803f7966dac5464f9cbf8f63387e)), closes [#676](https://github.com/iamkun/dayjs/issues/676)
489
+ * Update ka locale weekdays ([f8ca3d4](https://github.com/iamkun/dayjs/commit/f8ca3d4ba1d3cbe41613d3909c0627935a51a0c4))
490
+ * Update nb locale ([#679](https://github.com/iamkun/dayjs/issues/679)) ([1063b0e](https://github.com/iamkun/dayjs/commit/1063b0e1b5c19a1354d233cc0f21438e7073233a))
491
+ * Update Polish locale (pl)([#713](https://github.com/iamkun/dayjs/issues/713)) ([30d2f02](https://github.com/iamkun/dayjs/commit/30d2f026b47188833a4f44fee4bab52467d4a718))
492
+ * Update Ukrainian locale (uk) ([#710](https://github.com/iamkun/dayjs/issues/710)) ([360161c](https://github.com/iamkun/dayjs/commit/360161cac75f597fdd51d9d1ff138601282a1b4b))
493
+ * UTC plugin set utcOffset value ([#668](https://github.com/iamkun/dayjs/issues/668)) ([8877883](https://github.com/iamkun/dayjs/commit/88778838e71dd309e79cd1a8094d5bea36ca3390))
494
+
495
+ ## [1.8.16](https://github.com/iamkun/dayjs/compare/v1.8.15...v1.8.16) (2019-08-27)
496
+
497
+
498
+ ### Bug Fixes
499
+
500
+ * Fix relativeTime Plugin .FromNow() result error in UTC mode ([a385d5c](https://github.com/iamkun/dayjs/commit/a385d5c))
501
+ * Handle locale in WeekOfYear plugin ([#658](https://github.com/iamkun/dayjs/issues/658)) ([0e45b0a](https://github.com/iamkun/dayjs/commit/0e45b0a))
502
+ * LocaleData plugin returns all months and weekdays data when pas no argument ([#645](https://github.com/iamkun/dayjs/issues/645)) ([95e70b4](https://github.com/iamkun/dayjs/commit/95e70b4))
503
+ * Return null in toJSON if not valid ([#633](https://github.com/iamkun/dayjs/issues/633)) ([19affc8](https://github.com/iamkun/dayjs/commit/19affc8))
504
+ * Update Danish (da) locale ([#626](https://github.com/iamkun/dayjs/issues/626)) ([ac2ec77](https://github.com/iamkun/dayjs/commit/ac2ec77))
505
+ * Update Korean locale meridiem ([#642](https://github.com/iamkun/dayjs/issues/642)) ([b457146](https://github.com/iamkun/dayjs/commit/b457146))
506
+ * update Occitan locale Catalan locale ([#630](https://github.com/iamkun/dayjs/issues/630)) ([fef135e](https://github.com/iamkun/dayjs/commit/fef135e))
507
+ * update pt-br locale ([#628](https://github.com/iamkun/dayjs/issues/628)) ([ccf596d](https://github.com/iamkun/dayjs/commit/ccf596d))
508
+ * Update weekdaysShort to some locale files ([#643](https://github.com/iamkun/dayjs/issues/643)) ([cc1f15f](https://github.com/iamkun/dayjs/commit/cc1f15f))
509
+
510
+ ## [1.8.15](https://github.com/iamkun/dayjs/compare/v1.8.14...v1.8.15) (2019-07-08)
511
+
512
+
513
+ ### Bug Fixes
514
+
515
+ * Fix dayjs.locale() returns current global locale ([#602](https://github.com/iamkun/dayjs/issues/602)) ([790cd1a](https://github.com/iamkun/dayjs/commit/790cd1a))
516
+ * Fix incorrect Thai locale translation of July ([#607](https://github.com/iamkun/dayjs/issues/607)) ([43cbfd3](https://github.com/iamkun/dayjs/commit/43cbfd3))
517
+ * Lowercase french locale months and weekdays ([#615](https://github.com/iamkun/dayjs/issues/615)) ([e5a257c](https://github.com/iamkun/dayjs/commit/e5a257c))
518
+ * Type - Export Ls object to query all available locales ([#623](https://github.com/iamkun/dayjs/issues/623)) ([f6bfae0](https://github.com/iamkun/dayjs/commit/f6bfae0))
519
+ * Update nb (Norsk Bokmål) locale ([#604](https://github.com/iamkun/dayjs/issues/604)) ([907f5c9](https://github.com/iamkun/dayjs/commit/907f5c9))
520
+ * Update types of `.diff` API ([#617](https://github.com/iamkun/dayjs/issues/617)) ([f0f43d2](https://github.com/iamkun/dayjs/commit/f0f43d2))
521
+
522
+ ## [1.8.14](https://github.com/iamkun/dayjs/compare/v1.8.13...v1.8.14) (2019-05-07)
523
+
524
+
525
+ ### Bug Fixes
526
+
527
+ * Fix `.format` API returns UTC offset when value is 0 bug ([b254964](https://github.com/iamkun/dayjs/commit/b254964))
528
+ * Fix QuarterOfYear plugin bug ([#591](https://github.com/iamkun/dayjs/issues/591)) ([434f774](https://github.com/iamkun/dayjs/commit/434f774))
529
+ * Fix UTC plugin add day DST bug ([#590](https://github.com/iamkun/dayjs/issues/590)) ([86cd839](https://github.com/iamkun/dayjs/commit/86cd839))
530
+
531
+ ## [1.8.13](https://github.com/iamkun/dayjs/compare/v1.8.12...v1.8.13) (2019-04-26)
532
+
533
+
534
+ ### Bug Fixes
535
+
536
+ * Add missing relativeTime and formats for some locales ([#560](https://github.com/iamkun/dayjs/issues/560)) ([96b917e](https://github.com/iamkun/dayjs/commit/96b917e))
537
+ * Add weekday (locale aware day of the week) plugin ([#569](https://github.com/iamkun/dayjs/issues/569)) ([9007cc5](https://github.com/iamkun/dayjs/commit/9007cc5)), closes [#559](https://github.com/iamkun/dayjs/issues/559)
538
+ * Allow customizing "am" / "pm" strings with locale meridiem function ([#580](https://github.com/iamkun/dayjs/issues/580)) ([576e93e](https://github.com/iamkun/dayjs/commit/576e93e)), closes [#578](https://github.com/iamkun/dayjs/issues/578)
539
+ * Fix `.add` day/week decimal rouding bug ([800f6c9](https://github.com/iamkun/dayjs/commit/800f6c9))
540
+ * Fix `.diff` type definition error ([#565](https://github.com/iamkun/dayjs/issues/565)) ([c4921ae](https://github.com/iamkun/dayjs/commit/c4921ae)), closes [#561](https://github.com/iamkun/dayjs/issues/561)
541
+ * Fix CustomParseFormat plugin bug ([#568](https://github.com/iamkun/dayjs/issues/568)) ([1f5a9db](https://github.com/iamkun/dayjs/commit/1f5a9db)), closes [#555](https://github.com/iamkun/dayjs/issues/555)
542
+ * Fix relativeTime plugin Math.round bug ([40bea40](https://github.com/iamkun/dayjs/commit/40bea40))
543
+ * skip square brackets in buddhistEra, advancedFormat plugins ([#556](https://github.com/iamkun/dayjs/issues/556)) ([9279718](https://github.com/iamkun/dayjs/commit/9279718)), closes [#554](https://github.com/iamkun/dayjs/issues/554)
544
+ * Update Indonesian locale([#574](https://github.com/iamkun/dayjs/issues/574)) ([0aa7143](https://github.com/iamkun/dayjs/commit/0aa7143))
545
+ * Update locale month to support both array and function ([#581](https://github.com/iamkun/dayjs/issues/581)) ([b6599d3](https://github.com/iamkun/dayjs/commit/b6599d3))
546
+ * Update LocalizedFormat plugin lowercase formats logic ([#557](https://github.com/iamkun/dayjs/issues/557)) ([d409304](https://github.com/iamkun/dayjs/commit/d409304))
547
+
548
+ ## [1.8.12](https://github.com/iamkun/dayjs/compare/v1.8.11...v1.8.12) (2019-04-02)
549
+
550
+
551
+ ### Bug Fixes
552
+
553
+ * Add .get API ([7318797](https://github.com/iamkun/dayjs/commit/7318797))
554
+ * Add 79 locales ([#541](https://github.com/iamkun/dayjs/issues/541)) ([f75a125](https://github.com/iamkun/dayjs/commit/f75a125))
555
+ * Add Calendar plugin ([d1b9cf9](https://github.com/iamkun/dayjs/commit/d1b9cf9))
556
+ * Add isoWeeksInYear plugin ([2db8631](https://github.com/iamkun/dayjs/commit/2db8631))
557
+ * Add Occitan (oc-lnc) locale file ([#551](https://github.com/iamkun/dayjs/issues/551)) ([c30b715](https://github.com/iamkun/dayjs/commit/c30b715))
558
+ * Add plugin minMax to sopport .max .min ([2870a23](https://github.com/iamkun/dayjs/commit/2870a23))
559
+ * Fix set Month Year error in last day of the month ([d058f4a](https://github.com/iamkun/dayjs/commit/d058f4a))
560
+ * Update ko locale weekdaysShort ([#543](https://github.com/iamkun/dayjs/issues/543)) ([317fd3e](https://github.com/iamkun/dayjs/commit/317fd3e))
561
+ * Update localizedFormat plugin to support lowercase localizable formats (l, ll, lll, llll) ([#546](https://github.com/iamkun/dayjs/issues/546)) ([f2b5ebf](https://github.com/iamkun/dayjs/commit/f2b5ebf))
562
+
563
+ ## [1.8.11](https://github.com/iamkun/dayjs/compare/v1.8.10...v1.8.11) (2019-03-21)
564
+
565
+
566
+ ### Bug Fixes
567
+
568
+ * Add .add('quarter') .startOf('quarter') through plugin quarterOfYear ([dde39e9](https://github.com/iamkun/dayjs/commit/dde39e9)), closes [#537](https://github.com/iamkun/dayjs/issues/537) [#531](https://github.com/iamkun/dayjs/issues/531)
569
+ * Add locale support for Azerbaijani language (az) ([#535](https://github.com/iamkun/dayjs/issues/535)) ([eeb20fa](https://github.com/iamkun/dayjs/commit/eeb20fa))
570
+ * Correct typescript definition `add` ([22a249c](https://github.com/iamkun/dayjs/commit/22a249c)), closes [#531](https://github.com/iamkun/dayjs/issues/531)
571
+ * Fix CustomParseFormat plugin formatting bug ([#536](https://github.com/iamkun/dayjs/issues/536)) ([8578546](https://github.com/iamkun/dayjs/commit/8578546)), closes [#533](https://github.com/iamkun/dayjs/issues/533)
572
+ * Update pt locale ([#538](https://github.com/iamkun/dayjs/issues/538)) ([1ac9e1e](https://github.com/iamkun/dayjs/commit/1ac9e1e))
573
+
574
+ ## [1.8.10](https://github.com/iamkun/dayjs/compare/v1.8.9...v1.8.10) (2019-03-10)
575
+
576
+
577
+ ### Bug Fixes
578
+
579
+ * **locale:** Add nepali (ne) locale ([#524](https://github.com/iamkun/dayjs/issues/524)) ([bdbec01](https://github.com/iamkun/dayjs/commit/bdbec01))
580
+ * Add WeekYear plugin ([a892608](https://github.com/iamkun/dayjs/commit/a892608))
581
+ * API .locale() with no argument should return current locale name string ([8d63d88](https://github.com/iamkun/dayjs/commit/8d63d88))
582
+ * CustomParseFormat correct parse HH:mm:ss with only one digit like 0:12:10 ([600d547](https://github.com/iamkun/dayjs/commit/600d547))
583
+ * CustomParseFormat plugin parse Do format string ([bf27fda](https://github.com/iamkun/dayjs/commit/bf27fda)), closes [#522](https://github.com/iamkun/dayjs/issues/522)
584
+ * Expand setters like .year(2000) .hour(12) ([ac532a0](https://github.com/iamkun/dayjs/commit/ac532a0))
585
+ * Move toObject, toArray API to separate plugin from core ([40a3431](https://github.com/iamkun/dayjs/commit/40a3431))
586
+
587
+ ## [1.8.9](https://github.com/iamkun/dayjs/compare/v1.8.8...v1.8.9) (2019-03-06)
588
+
589
+
590
+ ### Features
591
+
592
+ * Add UTC mode with UTC plugin ([#517](https://github.com/iamkun/dayjs/issues/517)) ([caf335c](https://github.com/iamkun/dayjs/commit/caf335c))
593
+
594
+ > For plugin developers: Please note, we have changed the name of some method in `Utils` in order to reduce the file size. ([#517](https://github.com/iamkun/dayjs/issues/517)) ([detail](https://github.com/iamkun/dayjs/pull/517/files#diff-2b4ca49d4bb0a774c4d4c1672d7aa781R46))
595
+
596
+ ### Bug Fixes
597
+
598
+ * Add locale de-AT ([#515](https://github.com/iamkun/dayjs/issues/515)) ([d93f7b6](https://github.com/iamkun/dayjs/commit/d93f7b6))
599
+ * Add locale zh-hk ([#516](https://github.com/iamkun/dayjs/issues/516)) ([5fc05a6](https://github.com/iamkun/dayjs/commit/5fc05a6))
600
+
601
+ ## [1.8.8](https://github.com/iamkun/dayjs/compare/v1.8.7...v1.8.8) (2019-02-25)
602
+
603
+
604
+ ### Bug Fixes
605
+
606
+ * Update relativeTime plugin type definition ([de56f2c](https://github.com/iamkun/dayjs/commit/de56f2c))
607
+
608
+ ## [1.8.7](https://github.com/iamkun/dayjs/compare/v1.8.6...v1.8.7) (2019-02-24)
609
+
610
+
611
+ ### Bug Fixes
612
+
613
+ * Add plugin type definitions ([#418](https://github.com/iamkun/dayjs/issues/418)) ([361d437](https://github.com/iamkun/dayjs/commit/361d437))
614
+ * Add Swahili locale ([#508](https://github.com/iamkun/dayjs/issues/508)) ([b9cee84](https://github.com/iamkun/dayjs/commit/b9cee84))
615
+ * Parse month string 'MMMM MMM (February, Feb)' in customParseFormat ([#457](https://github.com/iamkun/dayjs/issues/457)) ([f343206](https://github.com/iamkun/dayjs/commit/f343206))
616
+ * Update declaration file .diff .isBefore .isSame .isAfter ([#496](https://github.com/iamkun/dayjs/issues/496)) ([4523275](https://github.com/iamkun/dayjs/commit/4523275))
617
+ * Word orders corrections for locale 'fa' ([#491](https://github.com/iamkun/dayjs/issues/491)) ([56050c2](https://github.com/iamkun/dayjs/commit/56050c2))
618
+
619
+ ## [1.8.6](https://github.com/iamkun/dayjs/compare/v1.8.5...v1.8.6) (2019-02-14)
620
+
621
+
622
+ ### Bug Fixes
623
+
624
+ * Add Bahasa Melayu (Malaysia) locale ([#485](https://github.com/iamkun/dayjs/issues/485)) ([cb208b0](https://github.com/iamkun/dayjs/commit/cb208b0))
625
+ * Copy & export built-in en locale to /locale folder as a separate file ([a7e05e0](https://github.com/iamkun/dayjs/commit/a7e05e0))
626
+ * Fix bug in customParseFormat plugin while month(MM) is '01' ([9884ca5](https://github.com/iamkun/dayjs/commit/9884ca5)), closes [#494](https://github.com/iamkun/dayjs/issues/494)
627
+ * Fix startOf week bug while week start is not Sunday ([5eaf77b](https://github.com/iamkun/dayjs/commit/5eaf77b))
628
+ * Implemented isBetween inclusivity ([#464](https://github.com/iamkun/dayjs/issues/464)) ([af2f4f1](https://github.com/iamkun/dayjs/commit/af2f4f1))
629
+ * Update Swedish and Finnish locales ([#488](https://github.com/iamkun/dayjs/issues/488)) ([f142082](https://github.com/iamkun/dayjs/commit/f142082))
630
+ * Fix commonJS require ES Module bug in webpack4 ([23f9f3d](https://github.com/iamkun/dayjs/commit/23f9f3d)), check [#492](https://github.com/iamkun/dayjs/issues/492)
631
+
632
+ > Get access to ESM code with `import dayjs from 'dayjs/esm'`
633
+
634
+ ## [1.8.5](https://github.com/iamkun/dayjs/compare/v1.8.4...v1.8.5) (2019-02-07)
635
+
636
+
637
+ ### Bug Fixes
638
+
639
+ * Add en-gb locale ([#478](https://github.com/iamkun/dayjs/issues/478)) ([508c3a7](https://github.com/iamkun/dayjs/commit/508c3a7))
640
+ * **module:** transpile everything except ES6 modules in the 'module' entrypoint ([#477](https://github.com/iamkun/dayjs/issues/477)) ([#480](https://github.com/iamkun/dayjs/issues/480)) ([#482](https://github.com/iamkun/dayjs/issues/482)) ([767017d](https://github.com/iamkun/dayjs/commit/767017d))
641
+ * update customParseFormat plugin support hh:mm ([54947cc](https://github.com/iamkun/dayjs/commit/54947cc)), closes [#484](https://github.com/iamkun/dayjs/issues/484)
642
+ * Update module in package.json ([5c5a7a0](https://github.com/iamkun/dayjs/commit/5c5a7a0))
643
+
644
+ ## [1.8.4](https://github.com/iamkun/dayjs/compare/v1.8.3...v1.8.4) (2019-02-05)
645
+
646
+ * Allow set start day of week in locale && Allow set week in weekOfYear plugin ([1295591](https://github.com/iamkun/dayjs/commit/1295591))
647
+ ### Bug Fixes
648
+ * update all locale files with correct week start ([5b03412](https://github.com/iamkun/dayjs/commit/5b03412))
649
+ * update es es-do locale adding weekStart && update weekStart test ([66e42ec](https://github.com/iamkun/dayjs/commit/66e42ec))
650
+ * Revert default export ([b00da1b](https://github.com/iamkun/dayjs/commit/b00da1b))
651
+
652
+ ## [1.8.3](https://github.com/iamkun/dayjs/compare/v1.8.2...v1.8.3) (2019-02-04)
653
+
654
+
655
+ ### Bug Fixes
656
+
657
+ * fix ios safari YYYY-MM-DD HH:mm parse BUG ([e02ae82](https://github.com/iamkun/dayjs/commit/e02ae82)), closes [#254](https://github.com/iamkun/dayjs/issues/254)
658
+
659
+ ## [1.8.2](https://github.com/iamkun/dayjs/compare/v1.8.1...v1.8.2) (2019-02-02)
660
+
661
+
662
+ ### Bug Fixes
663
+
664
+ * Add missing czech language locale ([#461](https://github.com/iamkun/dayjs/issues/461)) ([7e04004](https://github.com/iamkun/dayjs/commit/7e04004))
665
+ * Add utcOffset api method and fix calculating diff error in DST ([#453](https://github.com/iamkun/dayjs/issues/453)) ([ce2e30e](https://github.com/iamkun/dayjs/commit/ce2e30e))
666
+ * Fix it locale error ([#458](https://github.com/iamkun/dayjs/issues/458)) ([f6d9a64](https://github.com/iamkun/dayjs/commit/f6d9a64))
667
+ * Add DayOfYear plugin (#454)
668
+ * Fix es locale monthsShort error
669
+
670
+ ## [1.8.1](https://github.com/iamkun/dayjs/compare/v1.8.0...v1.8.1) (2019-02-02)
671
+
672
+ * Add LocalizedFormat plugin supplying format like LTS, LT, LLLL
673
+
674
+ * <del>update declaration File with default export (#278)</del>
675
+ > <del>From v1.8.1, in TypeScript Project, just `import from dayjs from 'dayjs'`</del>
676
+ * add ES2015 module support (#451)
677
+
678
+ ### Performance Improvements
679
+
680
+ * **format:** reuse matches instead of created when replacing ([#441](https://github.com/iamkun/dayjs/issues/441)) ([10b79d8](https://github.com/iamkun/dayjs/commit/10b79d8))
681
+
682
+ # [1.8.0](https://github.com/iamkun/dayjs/compare/v1.7.8...v1.8.0) (2019-01-14)
683
+
684
+
685
+ ### Features
686
+
687
+ * add CustomParseFormat plugin and QuarterOfYear plugin ([#450](https://github.com/iamkun/dayjs/issues/450)) ([8f6f63c](https://github.com/iamkun/dayjs/commit/8f6f63c))
688
+
689
+ ## [1.7.8](https://github.com/iamkun/dayjs/compare/v1.7.7...v1.7.8) (2018-12-13)
690
+
691
+
692
+ ### Feature
693
+
694
+ * update isSame isBefore isAfter supports units ([fd65464](https://github.com/iamkun/dayjs/commit/fd65464))
695
+
696
+ * add greek lithuanian locales
697
+
698
+ ## [1.7.7](https://github.com/iamkun/dayjs/compare/v1.7.6...v1.7.7) (2018-09-26)
699
+
700
+
701
+ ### Bug Fixes
702
+
703
+ * **DST:** fix daylight saving time DST bug && add test ([#354](https://github.com/iamkun/dayjs/issues/354)) ([6fca6d5](https://github.com/iamkun/dayjs/commit/6fca6d5))
704
+
705
+ ## [1.7.6](https://github.com/iamkun/dayjs/compare/v1.7.5...v1.7.6) (2018-09-25)
706
+
707
+
708
+ ### Bug Fixes
709
+
710
+ * **add dayjs.unix:** add dayjs.unix to parse timestamp in seconds && locale update ([5711c5e](https://github.com/iamkun/dayjs/commit/5711c5e))
711
+
712
+ ## [1.7.5](https://github.com/iamkun/dayjs/compare/v1.7.4...v1.7.5) (2018-08-10)
713
+
714
+
715
+ ### Bug Fixes
716
+
717
+ * add isBetween API & update ([b5fc3d1](https://github.com/iamkun/dayjs/commit/b5fc3d1))
718
+
719
+ ## [1.7.4](https://github.com/iamkun/dayjs/compare/v1.7.3...v1.7.4) (2018-07-11)
720
+
721
+
722
+ ### Bug Fixes
723
+
724
+ * update set week logic ([60b6325](https://github.com/iamkun/dayjs/commit/60b6325)), closes [#276](https://github.com/iamkun/dayjs/issues/276)
725
+
726
+ ## [1.7.3](https://github.com/iamkun/dayjs/compare/v1.7.2...v1.7.3) (2018-07-10)
727
+
728
+
729
+ ### Bug Fixes
730
+
731
+ * **locale-nl:** set correct weekdays and months ([6d089d7](https://github.com/iamkun/dayjs/commit/6d089d7))
732
+
733
+ ## [1.7.2](https://github.com/iamkun/dayjs/compare/v1.7.1...v1.7.2) (2018-07-04)
734
+
735
+
736
+ ### Bug Fixes
737
+
738
+ * DEPRECATED isLeapYear, use IsLeapYear plugin instead ([e2e5116](https://github.com/iamkun/dayjs/commit/e2e5116))
739
+
740
+ ## [1.7.1](https://github.com/iamkun/dayjs/compare/v1.7.0...v1.7.1) (2018-07-03)
741
+
742
+
743
+ ### Bug Fixes
744
+
745
+ * fix week() error near the end of the year ([fa03689](https://github.com/iamkun/dayjs/commit/fa03689))
746
+
747
+ # [1.7.0](https://github.com/iamkun/dayjs/compare/v1.6.10...v1.7.0) (2018-07-02)
748
+
749
+
750
+ ### Features
751
+
752
+ * Added method `.week()` to retrieve week of the year ([e1c1b1c](https://github.com/iamkun/dayjs/commit/e1c1b1c))
753
+ * Updated Japanese locae
754
+
755
+ ## [1.6.10](https://github.com/iamkun/dayjs/compare/v1.6.9...v1.6.10) (2018-06-25)
756
+
757
+
758
+ ### Bug Fixes
759
+
760
+ * Add relative locales to russian language ([c7e9898](https://github.com/iamkun/dayjs/commit/c7e9898)), closes [#256](https://github.com/iamkun/dayjs/issues/256)
761
+
762
+ ## [1.6.9](https://github.com/iamkun/dayjs/compare/v1.6.8...v1.6.9) (2018-06-14)
763
+
764
+
765
+ ### Bug Fixes
766
+
767
+ * add isDayjs => boolean API ([6227c8b](https://github.com/iamkun/dayjs/commit/6227c8b))
768
+
769
+ ## [1.6.8](https://github.com/iamkun/dayjs/compare/v1.6.7...v1.6.8) (2018-06-14)
770
+
771
+
772
+ ### Bug Fixes
773
+
774
+ * fix Advanced format bug in zh-cn ([0c07874](https://github.com/iamkun/dayjs/commit/0c07874)), closes [#242](https://github.com/iamkun/dayjs/issues/242)
775
+
776
+ ## [1.6.7](https://github.com/iamkun/dayjs/compare/v1.6.6...v1.6.7) (2018-06-11)
777
+
778
+
779
+ ### Bug Fixes
780
+
781
+ * fix id locale ([1ebbeb8](https://github.com/iamkun/dayjs/commit/1ebbeb8)), closes [#234](https://github.com/iamkun/dayjs/issues/234)
782
+
783
+ <a name="1.6.6"></a>
784
+ ## [1.6.6](https://github.com/iamkun/dayjs/compare/v1.6.5...v1.6.6) (2018-06-06)
785
+
786
+
787
+ ### Bug Fixes
788
+
789
+ * format API update and locale file update ([5ca48f0](https://github.com/iamkun/dayjs/commit/5ca48f0)), closes [#228](https://github.com/iamkun/dayjs/issues/228)
790
+
791
+ <a name="1.6.5"></a>
792
+ ## [1.6.5](https://github.com/iamkun/dayjs/compare/v1.6.4...v1.6.5) (2018-05-31)
793
+
794
+
795
+ ### Bug Fixes
796
+
797
+ * bugfix, utils update and locale file update ([ebcb6d5](https://github.com/iamkun/dayjs/commit/ebcb6d5)), closes [#214](https://github.com/iamkun/dayjs/issues/214)
798
+
799
+ <a name="1.6.4"></a>
800
+ ## [1.6.4](https://github.com/iamkun/dayjs/compare/v1.6.3...v1.6.4) (2018-05-25)
801
+
802
+
803
+ ### Bug Fixes
804
+
805
+ * add RelativeTime plugin and locale file update ([c1fbbca](https://github.com/iamkun/dayjs/commit/c1fbbca)), closes [#198](https://github.com/iamkun/dayjs/issues/198)
806
+
807
+ <a name="1.6.3"></a>
808
+ ## [1.6.3](https://github.com/iamkun/dayjs/compare/v1.6.2...v1.6.3) (2018-05-21)
809
+
810
+
811
+ ### Bug Fixes
812
+
813
+ * Changing locales locally is immutable from this release ([2cce729](https://github.com/iamkun/dayjs/commit/2cce729)), closes [#182](https://github.com/iamkun/dayjs/issues/182)
814
+ * instance locale change should be immutable ([84597c9](https://github.com/iamkun/dayjs/commit/84597c9))
815
+ * Add more locales
816
+ * english ordinal fix
817
+
818
+ <a name="1.6.2"></a>
819
+ ## [1.6.2](https://github.com/iamkun/dayjs/compare/v1.6.1...v1.6.2) (2018-05-18)
820
+
821
+
822
+ ### Bug Fixes
823
+
824
+ * change-log update && test new npm release ([aa49cba](https://github.com/iamkun/dayjs/commit/aa49cba)), closes [#163](https://github.com/iamkun/dayjs/issues/163)
825
+
826
+ <a name="1.6.1"></a>
827
+ ## [1.6.1](https://github.com/iamkun/dayjs/compare/v1.6.0...v1.6.1) (2018-05-18)
828
+
829
+
830
+ ### Bug Fixes
831
+
832
+ * Add German, Brazilian Portuguese locales
833
+ * add() & parse() bug fix & add locale de, pt-br ([bf1331e](https://github.com/iamkun/dayjs/commit/bf1331e))
834
+
835
+ <a name="1.6.0"></a>
836
+ # [1.6.0](https://github.com/iamkun/dayjs/compare/v1.5.24...v1.6.0) (2018-05-15)
837
+
838
+
839
+ ### Features
840
+
841
+ * Locale && Plugin ([2342c55](https://github.com/iamkun/dayjs/commit/2342c55)), closes [#141](https://github.com/iamkun/dayjs/issues/141)