mathjs 10.4.3 → 10.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3043) hide show
  1. package/CONTRIBUTING.md +14 -10
  2. package/HISTORY.md +38 -0
  3. package/README.md +13 -1
  4. package/docs/datatypes/matrices.md +17 -0
  5. package/docs/expressions/expression_trees.md +10 -0
  6. package/docs/expressions/syntax.md +4 -1
  7. package/docs/reference/functions/fft.md +35 -0
  8. package/docs/reference/functions/fix.md +1 -0
  9. package/docs/reference/functions/floor.md +4 -0
  10. package/docs/reference/functions/ifft.md +35 -0
  11. package/docs/reference/functions/lgamma.md +46 -0
  12. package/docs/reference/functions/pinv.md +44 -0
  13. package/docs/reference/functions/pow.md +8 -2
  14. package/docs/reference/functions/resolve.md +2 -2
  15. package/docs/reference/functions/simplifyConstant.md +52 -0
  16. package/docs/reference/functions.md +2 -0
  17. package/lib/browser/math.js +6 -6
  18. package/lib/browser/math.js.map +1 -1
  19. package/lib/cjs/entry/dependenciesAny/dependenciesCeil.generated.js +6 -0
  20. package/lib/cjs/entry/dependenciesAny/dependenciesDet.generated.js +5 -2
  21. package/lib/cjs/entry/dependenciesAny/dependenciesFix.generated.js +9 -0
  22. package/lib/cjs/entry/dependenciesAny/dependenciesFloor.generated.js +6 -0
  23. package/lib/cjs/entry/dependenciesAny/dependenciesIndexNode.generated.js +0 -3
  24. package/lib/cjs/entry/dependenciesAny/dependenciesLgamma.generated.js +23 -0
  25. package/lib/cjs/entry/dependenciesAny/dependenciesPinv.generated.js +53 -0
  26. package/lib/cjs/entry/dependenciesAny/dependenciesPow.generated.js +3 -0
  27. package/lib/cjs/entry/dependenciesAny.generated.js +16 -0
  28. package/lib/cjs/entry/dependenciesNumber/dependenciesCeil.generated.js +3 -0
  29. package/lib/cjs/entry/dependenciesNumber/dependenciesFix.generated.js +6 -0
  30. package/lib/cjs/entry/dependenciesNumber/dependenciesFloor.generated.js +3 -0
  31. package/lib/cjs/entry/dependenciesNumber/dependenciesIndexNode.generated.js +0 -3
  32. package/lib/cjs/entry/dependenciesNumber/dependenciesLgamma.generated.js +20 -0
  33. package/lib/cjs/entry/dependenciesNumber.generated.js +8 -0
  34. package/lib/cjs/entry/impureFunctionsAny.generated.js +96 -95
  35. package/lib/cjs/entry/impureFunctionsNumber.generated.js +11 -11
  36. package/lib/cjs/entry/pureFunctionsAny.generated.js +225 -196
  37. package/lib/cjs/entry/pureFunctionsNumber.generated.js +35 -25
  38. package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +6 -0
  39. package/lib/cjs/expression/embeddedDocs/function/arithmetic/pow.js +1 -1
  40. package/lib/cjs/expression/embeddedDocs/function/matrix/pinv.js +15 -0
  41. package/lib/cjs/expression/embeddedDocs/function/probability/lgamma.js +15 -0
  42. package/lib/cjs/expression/node/IndexNode.js +26 -61
  43. package/lib/cjs/factoriesAny.js +16 -0
  44. package/lib/cjs/factoriesNumber.js +32 -25
  45. package/lib/cjs/function/algebra/resolve.js +3 -3
  46. package/lib/cjs/function/arithmetic/ceil.js +75 -39
  47. package/lib/cjs/function/arithmetic/fix.js +54 -16
  48. package/lib/cjs/function/arithmetic/floor.js +79 -37
  49. package/lib/cjs/function/arithmetic/nthRoot.js +1 -3
  50. package/lib/cjs/function/arithmetic/pow.js +25 -6
  51. package/lib/cjs/function/arithmetic/round.js +27 -47
  52. package/lib/cjs/function/matrix/det.js +37 -31
  53. package/lib/cjs/function/matrix/pinv.js +223 -0
  54. package/lib/cjs/function/probability/lgamma.js +146 -0
  55. package/lib/cjs/header.js +2 -2
  56. package/lib/cjs/plain/number/arithmetic.js +9 -27
  57. package/lib/cjs/plain/number/probability.js +43 -3
  58. package/lib/cjs/type/matrix/function/sparse.js +6 -0
  59. package/lib/cjs/utils/latex.js +6 -0
  60. package/lib/cjs/utils/lruQueue.js +1 -3
  61. package/lib/cjs/utils/number.js +17 -2
  62. package/lib/cjs/utils/object.js +3 -1
  63. package/lib/cjs/version.js +1 -1
  64. package/lib/esm/entry/dependenciesAny/dependenciesCeil.generated.js +4 -0
  65. package/lib/esm/entry/dependenciesAny/dependenciesDet.generated.js +4 -2
  66. package/lib/esm/entry/dependenciesAny/dependenciesFix.generated.js +6 -0
  67. package/lib/esm/entry/dependenciesAny/dependenciesFloor.generated.js +4 -0
  68. package/lib/esm/entry/dependenciesAny/dependenciesIndexNode.generated.js +0 -2
  69. package/lib/esm/entry/dependenciesAny/dependenciesLgamma.generated.js +12 -0
  70. package/lib/esm/entry/dependenciesAny/dependenciesPinv.generated.js +32 -0
  71. package/lib/esm/entry/dependenciesAny/dependenciesPow.generated.js +2 -0
  72. package/lib/esm/entry/dependenciesAny.generated.js +2 -0
  73. package/lib/esm/entry/dependenciesNumber/dependenciesCeil.generated.js +2 -0
  74. package/lib/esm/entry/dependenciesNumber/dependenciesFix.generated.js +4 -0
  75. package/lib/esm/entry/dependenciesNumber/dependenciesFloor.generated.js +2 -0
  76. package/lib/esm/entry/dependenciesNumber/dependenciesIndexNode.generated.js +0 -2
  77. package/lib/esm/entry/dependenciesNumber/dependenciesLgamma.generated.js +10 -0
  78. package/lib/esm/entry/dependenciesNumber.generated.js +1 -0
  79. package/lib/esm/entry/impureFunctionsAny.generated.js +90 -89
  80. package/lib/esm/entry/impureFunctionsNumber.generated.js +12 -12
  81. package/lib/esm/entry/pureFunctionsAny.generated.js +189 -162
  82. package/lib/esm/entry/pureFunctionsNumber.generated.js +23 -14
  83. package/lib/esm/expression/embeddedDocs/embeddedDocs.js +4 -0
  84. package/lib/esm/expression/embeddedDocs/function/arithmetic/pow.js +1 -1
  85. package/lib/esm/expression/embeddedDocs/function/matrix/pinv.js +8 -0
  86. package/lib/esm/expression/embeddedDocs/function/probability/lgamma.js +8 -0
  87. package/lib/esm/expression/node/BlockNode.js +3 -3
  88. package/lib/esm/expression/node/IndexNode.js +22 -59
  89. package/lib/esm/expression/parse.js +5 -5
  90. package/lib/esm/factoriesAny.js +2 -0
  91. package/lib/esm/factoriesNumber.js +7 -6
  92. package/lib/esm/function/algebra/decomposition/qr.js +2 -2
  93. package/lib/esm/function/algebra/resolve.js +3 -3
  94. package/lib/esm/function/algebra/solver/utils/solveValidation.js +5 -5
  95. package/lib/esm/function/algebra/sparse/csChol.js +2 -2
  96. package/lib/esm/function/algebra/sparse/csLeaf.js +2 -2
  97. package/lib/esm/function/algebra/sparse/csLu.js +3 -3
  98. package/lib/esm/function/arithmetic/ceil.js +61 -24
  99. package/lib/esm/function/arithmetic/fix.js +51 -13
  100. package/lib/esm/function/arithmetic/floor.js +65 -23
  101. package/lib/esm/function/arithmetic/nthRoot.js +1 -3
  102. package/lib/esm/function/arithmetic/nthRoots.js +1 -1
  103. package/lib/esm/function/arithmetic/pow.js +25 -6
  104. package/lib/esm/function/arithmetic/round.js +25 -43
  105. package/lib/esm/function/matrix/det.js +35 -31
  106. package/lib/esm/function/matrix/expm.js +2 -2
  107. package/lib/esm/function/matrix/pinv.js +205 -0
  108. package/lib/esm/function/probability/gamma.js +1 -1
  109. package/lib/esm/function/probability/lgamma.js +137 -0
  110. package/lib/esm/function/string/bin.js +1 -1
  111. package/lib/esm/function/string/hex.js +1 -1
  112. package/lib/esm/function/string/oct.js +1 -1
  113. package/lib/esm/plain/number/arithmetic.js +9 -17
  114. package/lib/esm/plain/number/probability.js +33 -1
  115. package/lib/esm/type/complex/Complex.js +2 -2
  116. package/lib/esm/type/matrix/DenseMatrix.js +2 -2
  117. package/lib/esm/type/matrix/FibonacciHeap.js +2 -2
  118. package/lib/esm/type/matrix/SparseMatrix.js +13 -13
  119. package/lib/esm/type/matrix/function/sparse.js +6 -0
  120. package/lib/esm/type/unit/Unit.js +7 -7
  121. package/lib/esm/utils/latex.js +6 -0
  122. package/lib/esm/utils/lruQueue.js +1 -2
  123. package/lib/esm/utils/number.js +16 -4
  124. package/lib/esm/utils/object.js +3 -1
  125. package/lib/esm/version.js +1 -1
  126. package/package.json +26 -15
  127. package/types/index.d.ts +1806 -1363
  128. package/types/index.ts +705 -264
  129. package/examples/node_modules/.bin/acorn +0 -12
  130. package/examples/node_modules/.bin/acorn.cmd +0 -17
  131. package/examples/node_modules/.bin/acorn.ps1 +0 -28
  132. package/examples/node_modules/.bin/browserslist +0 -12
  133. package/examples/node_modules/.bin/browserslist.cmd +0 -17
  134. package/examples/node_modules/.bin/browserslist.ps1 +0 -28
  135. package/examples/node_modules/.bin/envinfo +0 -12
  136. package/examples/node_modules/.bin/envinfo.cmd +0 -17
  137. package/examples/node_modules/.bin/envinfo.ps1 +0 -28
  138. package/examples/node_modules/.bin/import-local-fixture +0 -12
  139. package/examples/node_modules/.bin/import-local-fixture.cmd +0 -17
  140. package/examples/node_modules/.bin/import-local-fixture.ps1 +0 -28
  141. package/examples/node_modules/.bin/node-which +0 -12
  142. package/examples/node_modules/.bin/node-which.cmd +0 -17
  143. package/examples/node_modules/.bin/node-which.ps1 +0 -28
  144. package/examples/node_modules/.bin/resolve +0 -12
  145. package/examples/node_modules/.bin/resolve.cmd +0 -17
  146. package/examples/node_modules/.bin/resolve.ps1 +0 -28
  147. package/examples/node_modules/.bin/terser +0 -12
  148. package/examples/node_modules/.bin/terser.cmd +0 -17
  149. package/examples/node_modules/.bin/terser.ps1 +0 -28
  150. package/examples/node_modules/.bin/webpack +0 -12
  151. package/examples/node_modules/.bin/webpack-cli +0 -12
  152. package/examples/node_modules/.bin/webpack-cli.cmd +0 -17
  153. package/examples/node_modules/.bin/webpack-cli.ps1 +0 -28
  154. package/examples/node_modules/.bin/webpack.cmd +0 -17
  155. package/examples/node_modules/.bin/webpack.ps1 +0 -28
  156. package/examples/node_modules/.package-lock.json +0 -1407
  157. package/examples/node_modules/@discoveryjs/json-ext/LICENSE +0 -21
  158. package/examples/node_modules/@discoveryjs/json-ext/README.md +0 -256
  159. package/examples/node_modules/@discoveryjs/json-ext/dist/json-ext.js +0 -791
  160. package/examples/node_modules/@discoveryjs/json-ext/dist/json-ext.min.js +0 -1
  161. package/examples/node_modules/@discoveryjs/json-ext/dist/version.js +0 -1
  162. package/examples/node_modules/@discoveryjs/json-ext/index.d.ts +0 -31
  163. package/examples/node_modules/@discoveryjs/json-ext/package.json +0 -56
  164. package/examples/node_modules/@discoveryjs/json-ext/src/index.js +0 -6
  165. package/examples/node_modules/@discoveryjs/json-ext/src/parse-chunked.js +0 -384
  166. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-info.js +0 -231
  167. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-stream-browser.js +0 -3
  168. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-stream.js +0 -408
  169. package/examples/node_modules/@discoveryjs/json-ext/src/text-decoder-browser.js +0 -1
  170. package/examples/node_modules/@discoveryjs/json-ext/src/text-decoder.js +0 -1
  171. package/examples/node_modules/@discoveryjs/json-ext/src/utils.js +0 -149
  172. package/examples/node_modules/@discoveryjs/json-ext/src/version.js +0 -1
  173. package/examples/node_modules/@types/eslint/LICENSE +0 -21
  174. package/examples/node_modules/@types/eslint/README.md +0 -16
  175. package/examples/node_modules/@types/eslint/helpers.d.ts +0 -3
  176. package/examples/node_modules/@types/eslint/index.d.ts +0 -953
  177. package/examples/node_modules/@types/eslint/package.json +0 -65
  178. package/examples/node_modules/@types/eslint/rules/best-practices.d.ts +0 -931
  179. package/examples/node_modules/@types/eslint/rules/deprecated.d.ts +0 -267
  180. package/examples/node_modules/@types/eslint/rules/ecmascript-6.d.ts +0 -502
  181. package/examples/node_modules/@types/eslint/rules/index.d.ts +0 -21
  182. package/examples/node_modules/@types/eslint/rules/node-commonjs.d.ts +0 -133
  183. package/examples/node_modules/@types/eslint/rules/possible-errors.d.ts +0 -484
  184. package/examples/node_modules/@types/eslint/rules/strict-mode.d.ts +0 -11
  185. package/examples/node_modules/@types/eslint/rules/stylistic-issues.d.ts +0 -1893
  186. package/examples/node_modules/@types/eslint/rules/variables.d.ts +0 -187
  187. package/examples/node_modules/@types/eslint/use-at-your-own-risk.d.ts +0 -8
  188. package/examples/node_modules/@types/eslint-scope/LICENSE +0 -21
  189. package/examples/node_modules/@types/eslint-scope/README.md +0 -84
  190. package/examples/node_modules/@types/eslint-scope/index.d.ts +0 -64
  191. package/examples/node_modules/@types/eslint-scope/package.json +0 -28
  192. package/examples/node_modules/@types/estree/LICENSE +0 -21
  193. package/examples/node_modules/@types/estree/README.md +0 -16
  194. package/examples/node_modules/@types/estree/flow.d.ts +0 -174
  195. package/examples/node_modules/@types/estree/index.d.ts +0 -595
  196. package/examples/node_modules/@types/estree/package.json +0 -25
  197. package/examples/node_modules/@types/json-schema/LICENSE +0 -21
  198. package/examples/node_modules/@types/json-schema/README.md +0 -16
  199. package/examples/node_modules/@types/json-schema/index.d.ts +0 -758
  200. package/examples/node_modules/@types/json-schema/package.json +0 -40
  201. package/examples/node_modules/@types/node/LICENSE +0 -21
  202. package/examples/node_modules/@types/node/README.md +0 -16
  203. package/examples/node_modules/@types/node/assert/strict.d.ts +0 -8
  204. package/examples/node_modules/@types/node/assert.d.ts +0 -912
  205. package/examples/node_modules/@types/node/async_hooks.d.ts +0 -501
  206. package/examples/node_modules/@types/node/buffer.d.ts +0 -2232
  207. package/examples/node_modules/@types/node/child_process.d.ts +0 -1366
  208. package/examples/node_modules/@types/node/cluster.d.ts +0 -414
  209. package/examples/node_modules/@types/node/console.d.ts +0 -412
  210. package/examples/node_modules/@types/node/constants.d.ts +0 -18
  211. package/examples/node_modules/@types/node/crypto.d.ts +0 -3307
  212. package/examples/node_modules/@types/node/dgram.d.ts +0 -545
  213. package/examples/node_modules/@types/node/diagnostics_channel.d.ts +0 -134
  214. package/examples/node_modules/@types/node/dns/promises.d.ts +0 -370
  215. package/examples/node_modules/@types/node/dns.d.ts +0 -659
  216. package/examples/node_modules/@types/node/domain.d.ts +0 -169
  217. package/examples/node_modules/@types/node/events.d.ts +0 -651
  218. package/examples/node_modules/@types/node/fs/promises.d.ts +0 -1091
  219. package/examples/node_modules/@types/node/fs.d.ts +0 -3869
  220. package/examples/node_modules/@types/node/globals.d.ts +0 -284
  221. package/examples/node_modules/@types/node/globals.global.d.ts +0 -1
  222. package/examples/node_modules/@types/node/http.d.ts +0 -1396
  223. package/examples/node_modules/@types/node/http2.d.ts +0 -2100
  224. package/examples/node_modules/@types/node/https.d.ts +0 -391
  225. package/examples/node_modules/@types/node/index.d.ts +0 -129
  226. package/examples/node_modules/@types/node/inspector.d.ts +0 -2744
  227. package/examples/node_modules/@types/node/module.d.ts +0 -114
  228. package/examples/node_modules/@types/node/net.d.ts +0 -784
  229. package/examples/node_modules/@types/node/os.d.ts +0 -455
  230. package/examples/node_modules/@types/node/package.json +0 -220
  231. package/examples/node_modules/@types/node/path.d.ts +0 -180
  232. package/examples/node_modules/@types/node/perf_hooks.d.ts +0 -557
  233. package/examples/node_modules/@types/node/process.d.ts +0 -1481
  234. package/examples/node_modules/@types/node/punycode.d.ts +0 -117
  235. package/examples/node_modules/@types/node/querystring.d.ts +0 -131
  236. package/examples/node_modules/@types/node/readline.d.ts +0 -650
  237. package/examples/node_modules/@types/node/repl.d.ts +0 -424
  238. package/examples/node_modules/@types/node/stream/consumers.d.ts +0 -24
  239. package/examples/node_modules/@types/node/stream/promises.d.ts +0 -42
  240. package/examples/node_modules/@types/node/stream/web.d.ts +0 -330
  241. package/examples/node_modules/@types/node/stream.d.ts +0 -1249
  242. package/examples/node_modules/@types/node/string_decoder.d.ts +0 -67
  243. package/examples/node_modules/@types/node/timers/promises.d.ts +0 -68
  244. package/examples/node_modules/@types/node/timers.d.ts +0 -94
  245. package/examples/node_modules/@types/node/tls.d.ts +0 -1020
  246. package/examples/node_modules/@types/node/trace_events.d.ts +0 -161
  247. package/examples/node_modules/@types/node/tty.d.ts +0 -204
  248. package/examples/node_modules/@types/node/url.d.ts +0 -891
  249. package/examples/node_modules/@types/node/util.d.ts +0 -1594
  250. package/examples/node_modules/@types/node/v8.d.ts +0 -378
  251. package/examples/node_modules/@types/node/vm.d.ts +0 -507
  252. package/examples/node_modules/@types/node/wasi.d.ts +0 -158
  253. package/examples/node_modules/@types/node/worker_threads.d.ts +0 -649
  254. package/examples/node_modules/@types/node/zlib.d.ts +0 -517
  255. package/examples/node_modules/@webassemblyjs/ast/LICENSE +0 -21
  256. package/examples/node_modules/@webassemblyjs/ast/README.md +0 -167
  257. package/examples/node_modules/@webassemblyjs/ast/esm/clone.js +0 -3
  258. package/examples/node_modules/@webassemblyjs/ast/esm/definitions.js +0 -668
  259. package/examples/node_modules/@webassemblyjs/ast/esm/index.js +0 -7
  260. package/examples/node_modules/@webassemblyjs/ast/esm/node-helpers.js +0 -84
  261. package/examples/node_modules/@webassemblyjs/ast/esm/node-path.js +0 -137
  262. package/examples/node_modules/@webassemblyjs/ast/esm/nodes.js +0 -925
  263. package/examples/node_modules/@webassemblyjs/ast/esm/signatures.js +0 -199
  264. package/examples/node_modules/@webassemblyjs/ast/esm/transform/ast-module-to-module-context/index.js +0 -378
  265. package/examples/node_modules/@webassemblyjs/ast/esm/transform/denormalize-type-references/index.js +0 -76
  266. package/examples/node_modules/@webassemblyjs/ast/esm/transform/wast-identifier-to-index/index.js +0 -216
  267. package/examples/node_modules/@webassemblyjs/ast/esm/traverse.js +0 -96
  268. package/examples/node_modules/@webassemblyjs/ast/esm/types/basic.js +0 -0
  269. package/examples/node_modules/@webassemblyjs/ast/esm/types/nodes.js +0 -0
  270. package/examples/node_modules/@webassemblyjs/ast/esm/types/traverse.js +0 -0
  271. package/examples/node_modules/@webassemblyjs/ast/esm/utils.js +0 -265
  272. package/examples/node_modules/@webassemblyjs/ast/lib/clone.js +0 -10
  273. package/examples/node_modules/@webassemblyjs/ast/lib/definitions.js +0 -668
  274. package/examples/node_modules/@webassemblyjs/ast/lib/index.js +0 -127
  275. package/examples/node_modules/@webassemblyjs/ast/lib/node-helpers.js +0 -107
  276. package/examples/node_modules/@webassemblyjs/ast/lib/node-path.js +0 -144
  277. package/examples/node_modules/@webassemblyjs/ast/lib/nodes.js +0 -1144
  278. package/examples/node_modules/@webassemblyjs/ast/lib/signatures.js +0 -207
  279. package/examples/node_modules/@webassemblyjs/ast/lib/transform/ast-module-to-module-context/index.js +0 -389
  280. package/examples/node_modules/@webassemblyjs/ast/lib/transform/denormalize-type-references/index.js +0 -83
  281. package/examples/node_modules/@webassemblyjs/ast/lib/transform/wast-identifier-to-index/index.js +0 -225
  282. package/examples/node_modules/@webassemblyjs/ast/lib/traverse.js +0 -105
  283. package/examples/node_modules/@webassemblyjs/ast/lib/types/basic.js +0 -0
  284. package/examples/node_modules/@webassemblyjs/ast/lib/types/nodes.js +0 -0
  285. package/examples/node_modules/@webassemblyjs/ast/lib/types/traverse.js +0 -0
  286. package/examples/node_modules/@webassemblyjs/ast/lib/utils.js +0 -306
  287. package/examples/node_modules/@webassemblyjs/ast/package.json +0 -32
  288. package/examples/node_modules/@webassemblyjs/ast/scripts/generateNodeUtils.js +0 -219
  289. package/examples/node_modules/@webassemblyjs/ast/scripts/generateTypeDefinitions.js +0 -47
  290. package/examples/node_modules/@webassemblyjs/ast/scripts/util.js +0 -38
  291. package/examples/node_modules/@webassemblyjs/floating-point-hex-parser/LICENSE +0 -21
  292. package/examples/node_modules/@webassemblyjs/floating-point-hex-parser/README.md +0 -34
  293. package/examples/node_modules/@webassemblyjs/floating-point-hex-parser/esm/index.js +0 -42
  294. package/examples/node_modules/@webassemblyjs/floating-point-hex-parser/lib/index.js +0 -49
  295. package/examples/node_modules/@webassemblyjs/floating-point-hex-parser/package.json +0 -24
  296. package/examples/node_modules/@webassemblyjs/helper-api-error/LICENSE +0 -21
  297. package/examples/node_modules/@webassemblyjs/helper-api-error/esm/index.js +0 -47
  298. package/examples/node_modules/@webassemblyjs/helper-api-error/lib/index.js +0 -62
  299. package/examples/node_modules/@webassemblyjs/helper-api-error/package.json +0 -18
  300. package/examples/node_modules/@webassemblyjs/helper-buffer/LICENSE +0 -21
  301. package/examples/node_modules/@webassemblyjs/helper-buffer/esm/compare.js +0 -65
  302. package/examples/node_modules/@webassemblyjs/helper-buffer/esm/index.js +0 -67
  303. package/examples/node_modules/@webassemblyjs/helper-buffer/lib/compare.js +0 -73
  304. package/examples/node_modules/@webassemblyjs/helper-buffer/lib/index.js +0 -78
  305. package/examples/node_modules/@webassemblyjs/helper-buffer/package.json +0 -24
  306. package/examples/node_modules/@webassemblyjs/helper-numbers/LICENSE +0 -21
  307. package/examples/node_modules/@webassemblyjs/helper-numbers/esm/index.js +0 -91
  308. package/examples/node_modules/@webassemblyjs/helper-numbers/lib/index.js +0 -116
  309. package/examples/node_modules/@webassemblyjs/helper-numbers/package.json +0 -25
  310. package/examples/node_modules/@webassemblyjs/helper-numbers/src/index.js +0 -105
  311. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/LICENSE +0 -21
  312. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/esm/index.js +0 -391
  313. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/esm/section.js +0 -31
  314. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/lib/index.js +0 -406
  315. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/lib/section.js +0 -38
  316. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/package.json +0 -20
  317. package/examples/node_modules/@webassemblyjs/helper-wasm-section/LICENSE +0 -21
  318. package/examples/node_modules/@webassemblyjs/helper-wasm-section/esm/create.js +0 -107
  319. package/examples/node_modules/@webassemblyjs/helper-wasm-section/esm/index.js +0 -3
  320. package/examples/node_modules/@webassemblyjs/helper-wasm-section/esm/remove.js +0 -36
  321. package/examples/node_modules/@webassemblyjs/helper-wasm-section/esm/resize.js +0 -78
  322. package/examples/node_modules/@webassemblyjs/helper-wasm-section/lib/create.js +0 -121
  323. package/examples/node_modules/@webassemblyjs/helper-wasm-section/lib/index.js +0 -35
  324. package/examples/node_modules/@webassemblyjs/helper-wasm-section/lib/remove.js +0 -45
  325. package/examples/node_modules/@webassemblyjs/helper-wasm-section/lib/resize.js +0 -90
  326. package/examples/node_modules/@webassemblyjs/helper-wasm-section/package.json +0 -29
  327. package/examples/node_modules/@webassemblyjs/ieee754/LICENSE +0 -21
  328. package/examples/node_modules/@webassemblyjs/ieee754/esm/index.js +0 -33
  329. package/examples/node_modules/@webassemblyjs/ieee754/lib/index.js +0 -52
  330. package/examples/node_modules/@webassemblyjs/ieee754/package.json +0 -23
  331. package/examples/node_modules/@webassemblyjs/ieee754/src/index.js +0 -47
  332. package/examples/node_modules/@webassemblyjs/leb128/LICENSE.txt +0 -194
  333. package/examples/node_modules/@webassemblyjs/leb128/esm/bits.js +0 -145
  334. package/examples/node_modules/@webassemblyjs/leb128/esm/bufs.js +0 -218
  335. package/examples/node_modules/@webassemblyjs/leb128/esm/index.js +0 -34
  336. package/examples/node_modules/@webassemblyjs/leb128/esm/leb.js +0 -316
  337. package/examples/node_modules/@webassemblyjs/leb128/lib/bits.js +0 -156
  338. package/examples/node_modules/@webassemblyjs/leb128/lib/bufs.js +0 -236
  339. package/examples/node_modules/@webassemblyjs/leb128/lib/index.js +0 -59
  340. package/examples/node_modules/@webassemblyjs/leb128/lib/leb.js +0 -332
  341. package/examples/node_modules/@webassemblyjs/leb128/package.json +0 -23
  342. package/examples/node_modules/@webassemblyjs/utf8/LICENSE +0 -21
  343. package/examples/node_modules/@webassemblyjs/utf8/esm/decoder.js +0 -95
  344. package/examples/node_modules/@webassemblyjs/utf8/esm/encoder.js +0 -46
  345. package/examples/node_modules/@webassemblyjs/utf8/esm/index.js +0 -2
  346. package/examples/node_modules/@webassemblyjs/utf8/lib/decoder.js +0 -102
  347. package/examples/node_modules/@webassemblyjs/utf8/lib/encoder.js +0 -53
  348. package/examples/node_modules/@webassemblyjs/utf8/lib/index.js +0 -21
  349. package/examples/node_modules/@webassemblyjs/utf8/package.json +0 -20
  350. package/examples/node_modules/@webassemblyjs/utf8/src/decoder.js +0 -86
  351. package/examples/node_modules/@webassemblyjs/utf8/src/encoder.js +0 -44
  352. package/examples/node_modules/@webassemblyjs/utf8/src/index.js +0 -4
  353. package/examples/node_modules/@webassemblyjs/utf8/test/index.js +0 -13
  354. package/examples/node_modules/@webassemblyjs/wasm-edit/LICENSE +0 -21
  355. package/examples/node_modules/@webassemblyjs/wasm-edit/README.md +0 -86
  356. package/examples/node_modules/@webassemblyjs/wasm-edit/esm/apply.js +0 -299
  357. package/examples/node_modules/@webassemblyjs/wasm-edit/esm/index.js +0 -114
  358. package/examples/node_modules/@webassemblyjs/wasm-edit/lib/apply.js +0 -311
  359. package/examples/node_modules/@webassemblyjs/wasm-edit/lib/index.js +0 -133
  360. package/examples/node_modules/@webassemblyjs/wasm-edit/package.json +0 -33
  361. package/examples/node_modules/@webassemblyjs/wasm-gen/LICENSE +0 -21
  362. package/examples/node_modules/@webassemblyjs/wasm-gen/esm/encoder/index.js +0 -301
  363. package/examples/node_modules/@webassemblyjs/wasm-gen/esm/index.js +0 -51
  364. package/examples/node_modules/@webassemblyjs/wasm-gen/lib/encoder/index.js +0 -357
  365. package/examples/node_modules/@webassemblyjs/wasm-gen/lib/index.js +0 -64
  366. package/examples/node_modules/@webassemblyjs/wasm-gen/package.json +0 -27
  367. package/examples/node_modules/@webassemblyjs/wasm-opt/LICENSE +0 -21
  368. package/examples/node_modules/@webassemblyjs/wasm-opt/esm/index.js +0 -41
  369. package/examples/node_modules/@webassemblyjs/wasm-opt/esm/leb128.js +0 -47
  370. package/examples/node_modules/@webassemblyjs/wasm-opt/lib/index.js +0 -50
  371. package/examples/node_modules/@webassemblyjs/wasm-opt/lib/leb128.js +0 -56
  372. package/examples/node_modules/@webassemblyjs/wasm-opt/package.json +0 -26
  373. package/examples/node_modules/@webassemblyjs/wasm-parser/LICENSE +0 -21
  374. package/examples/node_modules/@webassemblyjs/wasm-parser/README.md +0 -28
  375. package/examples/node_modules/@webassemblyjs/wasm-parser/esm/decoder.js +0 -1776
  376. package/examples/node_modules/@webassemblyjs/wasm-parser/esm/index.js +0 -247
  377. package/examples/node_modules/@webassemblyjs/wasm-parser/esm/types/decoder.js +0 -0
  378. package/examples/node_modules/@webassemblyjs/wasm-parser/lib/decoder.js +0 -1792
  379. package/examples/node_modules/@webassemblyjs/wasm-parser/lib/index.js +0 -257
  380. package/examples/node_modules/@webassemblyjs/wasm-parser/lib/types/decoder.js +0 -0
  381. package/examples/node_modules/@webassemblyjs/wasm-parser/package.json +0 -44
  382. package/examples/node_modules/@webassemblyjs/wast-printer/LICENSE +0 -21
  383. package/examples/node_modules/@webassemblyjs/wast-printer/README.md +0 -17
  384. package/examples/node_modules/@webassemblyjs/wast-printer/esm/index.js +0 -904
  385. package/examples/node_modules/@webassemblyjs/wast-printer/lib/index.js +0 -915
  386. package/examples/node_modules/@webassemblyjs/wast-printer/package.json +0 -36
  387. package/examples/node_modules/@webpack-cli/configtest/README.md +0 -27
  388. package/examples/node_modules/@webpack-cli/configtest/lib/index.d.ts +0 -4
  389. package/examples/node_modules/@webpack-cli/configtest/lib/index.js +0 -55
  390. package/examples/node_modules/@webpack-cli/configtest/package.json +0 -23
  391. package/examples/node_modules/@webpack-cli/info/README.md +0 -50
  392. package/examples/node_modules/@webpack-cli/info/lib/index.d.ts +0 -4
  393. package/examples/node_modules/@webpack-cli/info/lib/index.js +0 -85
  394. package/examples/node_modules/@webpack-cli/info/package.json +0 -29
  395. package/examples/node_modules/@webpack-cli/serve/README.md +0 -30
  396. package/examples/node_modules/@webpack-cli/serve/lib/index.d.ts +0 -4
  397. package/examples/node_modules/@webpack-cli/serve/lib/index.js +0 -280
  398. package/examples/node_modules/@webpack-cli/serve/lib/types.d.ts +0 -91
  399. package/examples/node_modules/@webpack-cli/serve/lib/types.js +0 -31
  400. package/examples/node_modules/@webpack-cli/serve/package.json +0 -29
  401. package/examples/node_modules/@xtuc/ieee754/LICENSE +0 -28
  402. package/examples/node_modules/@xtuc/ieee754/README.md +0 -51
  403. package/examples/node_modules/@xtuc/ieee754/dist/.gitkeep +0 -0
  404. package/examples/node_modules/@xtuc/ieee754/dist/index.cjs.js +0 -96
  405. package/examples/node_modules/@xtuc/ieee754/index.js +0 -84
  406. package/examples/node_modules/@xtuc/ieee754/package.json +0 -42
  407. package/examples/node_modules/@xtuc/long/LICENSE +0 -202
  408. package/examples/node_modules/@xtuc/long/README.md +0 -257
  409. package/examples/node_modules/@xtuc/long/dist/long.js +0 -2
  410. package/examples/node_modules/@xtuc/long/dist/long.js.map +0 -1
  411. package/examples/node_modules/@xtuc/long/index.d.ts +0 -429
  412. package/examples/node_modules/@xtuc/long/index.js +0 -1
  413. package/examples/node_modules/@xtuc/long/package.json +0 -36
  414. package/examples/node_modules/@xtuc/long/src/long.js +0 -1405
  415. package/examples/node_modules/acorn/CHANGELOG.md +0 -788
  416. package/examples/node_modules/acorn/LICENSE +0 -21
  417. package/examples/node_modules/acorn/README.md +0 -280
  418. package/examples/node_modules/acorn/bin/acorn +0 -4
  419. package/examples/node_modules/acorn/dist/acorn.d.ts +0 -214
  420. package/examples/node_modules/acorn/dist/acorn.js +0 -5619
  421. package/examples/node_modules/acorn/dist/acorn.mjs +0 -5588
  422. package/examples/node_modules/acorn/dist/acorn.mjs.d.ts +0 -2
  423. package/examples/node_modules/acorn/dist/bin.js +0 -91
  424. package/examples/node_modules/acorn/package.json +0 -46
  425. package/examples/node_modules/acorn-import-assertions/README.md +0 -15
  426. package/examples/node_modules/acorn-import-assertions/lib/index.js +0 -287
  427. package/examples/node_modules/acorn-import-assertions/lib/index.mjs +0 -242
  428. package/examples/node_modules/acorn-import-assertions/package.json +0 -49
  429. package/examples/node_modules/acorn-import-assertions/src/index.js +0 -242
  430. package/examples/node_modules/ajv/.tonic_example.js +0 -20
  431. package/examples/node_modules/ajv/LICENSE +0 -22
  432. package/examples/node_modules/ajv/README.md +0 -1497
  433. package/examples/node_modules/ajv/dist/ajv.bundle.js +0 -7189
  434. package/examples/node_modules/ajv/dist/ajv.min.js +0 -3
  435. package/examples/node_modules/ajv/dist/ajv.min.js.map +0 -1
  436. package/examples/node_modules/ajv/lib/ajv.d.ts +0 -397
  437. package/examples/node_modules/ajv/lib/ajv.js +0 -506
  438. package/examples/node_modules/ajv/lib/cache.js +0 -26
  439. package/examples/node_modules/ajv/lib/compile/async.js +0 -90
  440. package/examples/node_modules/ajv/lib/compile/equal.js +0 -5
  441. package/examples/node_modules/ajv/lib/compile/error_classes.js +0 -34
  442. package/examples/node_modules/ajv/lib/compile/formats.js +0 -142
  443. package/examples/node_modules/ajv/lib/compile/index.js +0 -387
  444. package/examples/node_modules/ajv/lib/compile/resolve.js +0 -270
  445. package/examples/node_modules/ajv/lib/compile/rules.js +0 -66
  446. package/examples/node_modules/ajv/lib/compile/schema_obj.js +0 -9
  447. package/examples/node_modules/ajv/lib/compile/ucs2length.js +0 -20
  448. package/examples/node_modules/ajv/lib/compile/util.js +0 -239
  449. package/examples/node_modules/ajv/lib/data.js +0 -49
  450. package/examples/node_modules/ajv/lib/definition_schema.js +0 -37
  451. package/examples/node_modules/ajv/lib/dot/_limit.jst +0 -113
  452. package/examples/node_modules/ajv/lib/dot/_limitItems.jst +0 -12
  453. package/examples/node_modules/ajv/lib/dot/_limitLength.jst +0 -12
  454. package/examples/node_modules/ajv/lib/dot/_limitProperties.jst +0 -12
  455. package/examples/node_modules/ajv/lib/dot/allOf.jst +0 -32
  456. package/examples/node_modules/ajv/lib/dot/anyOf.jst +0 -46
  457. package/examples/node_modules/ajv/lib/dot/coerce.def +0 -51
  458. package/examples/node_modules/ajv/lib/dot/comment.jst +0 -9
  459. package/examples/node_modules/ajv/lib/dot/const.jst +0 -11
  460. package/examples/node_modules/ajv/lib/dot/contains.jst +0 -55
  461. package/examples/node_modules/ajv/lib/dot/custom.jst +0 -191
  462. package/examples/node_modules/ajv/lib/dot/defaults.def +0 -47
  463. package/examples/node_modules/ajv/lib/dot/definitions.def +0 -203
  464. package/examples/node_modules/ajv/lib/dot/dependencies.jst +0 -79
  465. package/examples/node_modules/ajv/lib/dot/enum.jst +0 -30
  466. package/examples/node_modules/ajv/lib/dot/errors.def +0 -194
  467. package/examples/node_modules/ajv/lib/dot/format.jst +0 -106
  468. package/examples/node_modules/ajv/lib/dot/if.jst +0 -73
  469. package/examples/node_modules/ajv/lib/dot/items.jst +0 -98
  470. package/examples/node_modules/ajv/lib/dot/missing.def +0 -39
  471. package/examples/node_modules/ajv/lib/dot/multipleOf.jst +0 -22
  472. package/examples/node_modules/ajv/lib/dot/not.jst +0 -43
  473. package/examples/node_modules/ajv/lib/dot/oneOf.jst +0 -54
  474. package/examples/node_modules/ajv/lib/dot/pattern.jst +0 -14
  475. package/examples/node_modules/ajv/lib/dot/properties.jst +0 -245
  476. package/examples/node_modules/ajv/lib/dot/propertyNames.jst +0 -52
  477. package/examples/node_modules/ajv/lib/dot/ref.jst +0 -85
  478. package/examples/node_modules/ajv/lib/dot/required.jst +0 -108
  479. package/examples/node_modules/ajv/lib/dot/uniqueItems.jst +0 -62
  480. package/examples/node_modules/ajv/lib/dot/validate.jst +0 -276
  481. package/examples/node_modules/ajv/lib/dotjs/README.md +0 -3
  482. package/examples/node_modules/ajv/lib/dotjs/_limit.js +0 -163
  483. package/examples/node_modules/ajv/lib/dotjs/_limitItems.js +0 -80
  484. package/examples/node_modules/ajv/lib/dotjs/_limitLength.js +0 -85
  485. package/examples/node_modules/ajv/lib/dotjs/_limitProperties.js +0 -80
  486. package/examples/node_modules/ajv/lib/dotjs/allOf.js +0 -42
  487. package/examples/node_modules/ajv/lib/dotjs/anyOf.js +0 -73
  488. package/examples/node_modules/ajv/lib/dotjs/comment.js +0 -14
  489. package/examples/node_modules/ajv/lib/dotjs/const.js +0 -56
  490. package/examples/node_modules/ajv/lib/dotjs/contains.js +0 -81
  491. package/examples/node_modules/ajv/lib/dotjs/custom.js +0 -228
  492. package/examples/node_modules/ajv/lib/dotjs/dependencies.js +0 -168
  493. package/examples/node_modules/ajv/lib/dotjs/enum.js +0 -66
  494. package/examples/node_modules/ajv/lib/dotjs/format.js +0 -150
  495. package/examples/node_modules/ajv/lib/dotjs/if.js +0 -103
  496. package/examples/node_modules/ajv/lib/dotjs/index.js +0 -33
  497. package/examples/node_modules/ajv/lib/dotjs/items.js +0 -140
  498. package/examples/node_modules/ajv/lib/dotjs/multipleOf.js +0 -80
  499. package/examples/node_modules/ajv/lib/dotjs/not.js +0 -84
  500. package/examples/node_modules/ajv/lib/dotjs/oneOf.js +0 -73
  501. package/examples/node_modules/ajv/lib/dotjs/pattern.js +0 -75
  502. package/examples/node_modules/ajv/lib/dotjs/properties.js +0 -335
  503. package/examples/node_modules/ajv/lib/dotjs/propertyNames.js +0 -81
  504. package/examples/node_modules/ajv/lib/dotjs/ref.js +0 -124
  505. package/examples/node_modules/ajv/lib/dotjs/required.js +0 -270
  506. package/examples/node_modules/ajv/lib/dotjs/uniqueItems.js +0 -86
  507. package/examples/node_modules/ajv/lib/dotjs/validate.js +0 -482
  508. package/examples/node_modules/ajv/lib/keyword.js +0 -146
  509. package/examples/node_modules/ajv/lib/refs/data.json +0 -17
  510. package/examples/node_modules/ajv/lib/refs/json-schema-draft-04.json +0 -149
  511. package/examples/node_modules/ajv/lib/refs/json-schema-draft-06.json +0 -154
  512. package/examples/node_modules/ajv/lib/refs/json-schema-draft-07.json +0 -168
  513. package/examples/node_modules/ajv/lib/refs/json-schema-secure.json +0 -94
  514. package/examples/node_modules/ajv/package.json +0 -106
  515. package/examples/node_modules/ajv/scripts/.eslintrc.yml +0 -3
  516. package/examples/node_modules/ajv/scripts/bundle.js +0 -61
  517. package/examples/node_modules/ajv/scripts/compile-dots.js +0 -73
  518. package/examples/node_modules/ajv/scripts/info +0 -10
  519. package/examples/node_modules/ajv/scripts/prepare-tests +0 -12
  520. package/examples/node_modules/ajv/scripts/publish-built-version +0 -32
  521. package/examples/node_modules/ajv/scripts/travis-gh-pages +0 -23
  522. package/examples/node_modules/ajv-keywords/LICENSE +0 -21
  523. package/examples/node_modules/ajv-keywords/README.md +0 -836
  524. package/examples/node_modules/ajv-keywords/ajv-keywords.d.ts +0 -7
  525. package/examples/node_modules/ajv-keywords/index.js +0 -35
  526. package/examples/node_modules/ajv-keywords/keywords/_formatLimit.js +0 -101
  527. package/examples/node_modules/ajv-keywords/keywords/_util.js +0 -15
  528. package/examples/node_modules/ajv-keywords/keywords/allRequired.js +0 -18
  529. package/examples/node_modules/ajv-keywords/keywords/anyRequired.js +0 -24
  530. package/examples/node_modules/ajv-keywords/keywords/deepProperties.js +0 -54
  531. package/examples/node_modules/ajv-keywords/keywords/deepRequired.js +0 -57
  532. package/examples/node_modules/ajv-keywords/keywords/dot/_formatLimit.jst +0 -116
  533. package/examples/node_modules/ajv-keywords/keywords/dot/patternRequired.jst +0 -33
  534. package/examples/node_modules/ajv-keywords/keywords/dot/switch.jst +0 -71
  535. package/examples/node_modules/ajv-keywords/keywords/dotjs/README.md +0 -3
  536. package/examples/node_modules/ajv-keywords/keywords/dotjs/_formatLimit.js +0 -178
  537. package/examples/node_modules/ajv-keywords/keywords/dotjs/patternRequired.js +0 -58
  538. package/examples/node_modules/ajv-keywords/keywords/dotjs/switch.js +0 -129
  539. package/examples/node_modules/ajv-keywords/keywords/dynamicDefaults.js +0 -72
  540. package/examples/node_modules/ajv-keywords/keywords/formatMaximum.js +0 -3
  541. package/examples/node_modules/ajv-keywords/keywords/formatMinimum.js +0 -3
  542. package/examples/node_modules/ajv-keywords/keywords/index.js +0 -22
  543. package/examples/node_modules/ajv-keywords/keywords/instanceof.js +0 -58
  544. package/examples/node_modules/ajv-keywords/keywords/oneRequired.js +0 -24
  545. package/examples/node_modules/ajv-keywords/keywords/patternRequired.js +0 -21
  546. package/examples/node_modules/ajv-keywords/keywords/prohibited.js +0 -24
  547. package/examples/node_modules/ajv-keywords/keywords/range.js +0 -36
  548. package/examples/node_modules/ajv-keywords/keywords/regexp.js +0 -36
  549. package/examples/node_modules/ajv-keywords/keywords/select.js +0 -79
  550. package/examples/node_modules/ajv-keywords/keywords/switch.js +0 -38
  551. package/examples/node_modules/ajv-keywords/keywords/transform.js +0 -80
  552. package/examples/node_modules/ajv-keywords/keywords/typeof.js +0 -32
  553. package/examples/node_modules/ajv-keywords/keywords/uniqueItemProperties.js +0 -59
  554. package/examples/node_modules/ajv-keywords/package.json +0 -53
  555. package/examples/node_modules/browserslist/LICENSE +0 -20
  556. package/examples/node_modules/browserslist/README.md +0 -66
  557. package/examples/node_modules/browserslist/browser.js +0 -50
  558. package/examples/node_modules/browserslist/cli.js +0 -152
  559. package/examples/node_modules/browserslist/error.d.ts +0 -7
  560. package/examples/node_modules/browserslist/error.js +0 -12
  561. package/examples/node_modules/browserslist/index.d.ts +0 -178
  562. package/examples/node_modules/browserslist/index.js +0 -1235
  563. package/examples/node_modules/browserslist/node.js +0 -393
  564. package/examples/node_modules/browserslist/package.json +0 -41
  565. package/examples/node_modules/browserslist/update-db.js +0 -317
  566. package/examples/node_modules/buffer-from/LICENSE +0 -21
  567. package/examples/node_modules/buffer-from/index.js +0 -72
  568. package/examples/node_modules/buffer-from/package.json +0 -19
  569. package/examples/node_modules/buffer-from/readme.md +0 -69
  570. package/examples/node_modules/caniuse-lite/LICENSE +0 -395
  571. package/examples/node_modules/caniuse-lite/README.md +0 -92
  572. package/examples/node_modules/caniuse-lite/data/agents.js +0 -1
  573. package/examples/node_modules/caniuse-lite/data/browserVersions.js +0 -1
  574. package/examples/node_modules/caniuse-lite/data/browsers.js +0 -1
  575. package/examples/node_modules/caniuse-lite/data/features/aac.js +0 -1
  576. package/examples/node_modules/caniuse-lite/data/features/abortcontroller.js +0 -1
  577. package/examples/node_modules/caniuse-lite/data/features/ac3-ec3.js +0 -1
  578. package/examples/node_modules/caniuse-lite/data/features/accelerometer.js +0 -1
  579. package/examples/node_modules/caniuse-lite/data/features/addeventlistener.js +0 -1
  580. package/examples/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +0 -1
  581. package/examples/node_modules/caniuse-lite/data/features/ambient-light.js +0 -1
  582. package/examples/node_modules/caniuse-lite/data/features/apng.js +0 -1
  583. package/examples/node_modules/caniuse-lite/data/features/array-find-index.js +0 -1
  584. package/examples/node_modules/caniuse-lite/data/features/array-find.js +0 -1
  585. package/examples/node_modules/caniuse-lite/data/features/array-flat.js +0 -1
  586. package/examples/node_modules/caniuse-lite/data/features/array-includes.js +0 -1
  587. package/examples/node_modules/caniuse-lite/data/features/arrow-functions.js +0 -1
  588. package/examples/node_modules/caniuse-lite/data/features/asmjs.js +0 -1
  589. package/examples/node_modules/caniuse-lite/data/features/async-clipboard.js +0 -1
  590. package/examples/node_modules/caniuse-lite/data/features/async-functions.js +0 -1
  591. package/examples/node_modules/caniuse-lite/data/features/atob-btoa.js +0 -1
  592. package/examples/node_modules/caniuse-lite/data/features/audio-api.js +0 -1
  593. package/examples/node_modules/caniuse-lite/data/features/audio.js +0 -1
  594. package/examples/node_modules/caniuse-lite/data/features/audiotracks.js +0 -1
  595. package/examples/node_modules/caniuse-lite/data/features/autofocus.js +0 -1
  596. package/examples/node_modules/caniuse-lite/data/features/auxclick.js +0 -1
  597. package/examples/node_modules/caniuse-lite/data/features/av1.js +0 -1
  598. package/examples/node_modules/caniuse-lite/data/features/avif.js +0 -1
  599. package/examples/node_modules/caniuse-lite/data/features/background-attachment.js +0 -1
  600. package/examples/node_modules/caniuse-lite/data/features/background-clip-text.js +0 -1
  601. package/examples/node_modules/caniuse-lite/data/features/background-img-opts.js +0 -1
  602. package/examples/node_modules/caniuse-lite/data/features/background-position-x-y.js +0 -1
  603. package/examples/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +0 -1
  604. package/examples/node_modules/caniuse-lite/data/features/background-sync.js +0 -1
  605. package/examples/node_modules/caniuse-lite/data/features/battery-status.js +0 -1
  606. package/examples/node_modules/caniuse-lite/data/features/beacon.js +0 -1
  607. package/examples/node_modules/caniuse-lite/data/features/beforeafterprint.js +0 -1
  608. package/examples/node_modules/caniuse-lite/data/features/bigint.js +0 -1
  609. package/examples/node_modules/caniuse-lite/data/features/blobbuilder.js +0 -1
  610. package/examples/node_modules/caniuse-lite/data/features/bloburls.js +0 -1
  611. package/examples/node_modules/caniuse-lite/data/features/border-image.js +0 -1
  612. package/examples/node_modules/caniuse-lite/data/features/border-radius.js +0 -1
  613. package/examples/node_modules/caniuse-lite/data/features/broadcastchannel.js +0 -1
  614. package/examples/node_modules/caniuse-lite/data/features/brotli.js +0 -1
  615. package/examples/node_modules/caniuse-lite/data/features/calc.js +0 -1
  616. package/examples/node_modules/caniuse-lite/data/features/canvas-blending.js +0 -1
  617. package/examples/node_modules/caniuse-lite/data/features/canvas-text.js +0 -1
  618. package/examples/node_modules/caniuse-lite/data/features/canvas.js +0 -1
  619. package/examples/node_modules/caniuse-lite/data/features/ch-unit.js +0 -1
  620. package/examples/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +0 -1
  621. package/examples/node_modules/caniuse-lite/data/features/channel-messaging.js +0 -1
  622. package/examples/node_modules/caniuse-lite/data/features/childnode-remove.js +0 -1
  623. package/examples/node_modules/caniuse-lite/data/features/classlist.js +0 -1
  624. package/examples/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +0 -1
  625. package/examples/node_modules/caniuse-lite/data/features/clipboard.js +0 -1
  626. package/examples/node_modules/caniuse-lite/data/features/colr-v1.js +0 -1
  627. package/examples/node_modules/caniuse-lite/data/features/colr.js +0 -1
  628. package/examples/node_modules/caniuse-lite/data/features/comparedocumentposition.js +0 -1
  629. package/examples/node_modules/caniuse-lite/data/features/console-basic.js +0 -1
  630. package/examples/node_modules/caniuse-lite/data/features/console-time.js +0 -1
  631. package/examples/node_modules/caniuse-lite/data/features/const.js +0 -1
  632. package/examples/node_modules/caniuse-lite/data/features/constraint-validation.js +0 -1
  633. package/examples/node_modules/caniuse-lite/data/features/contenteditable.js +0 -1
  634. package/examples/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +0 -1
  635. package/examples/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +0 -1
  636. package/examples/node_modules/caniuse-lite/data/features/cookie-store-api.js +0 -1
  637. package/examples/node_modules/caniuse-lite/data/features/cors.js +0 -1
  638. package/examples/node_modules/caniuse-lite/data/features/createimagebitmap.js +0 -1
  639. package/examples/node_modules/caniuse-lite/data/features/credential-management.js +0 -1
  640. package/examples/node_modules/caniuse-lite/data/features/cryptography.js +0 -1
  641. package/examples/node_modules/caniuse-lite/data/features/css-all.js +0 -1
  642. package/examples/node_modules/caniuse-lite/data/features/css-animation.js +0 -1
  643. package/examples/node_modules/caniuse-lite/data/features/css-any-link.js +0 -1
  644. package/examples/node_modules/caniuse-lite/data/features/css-appearance.js +0 -1
  645. package/examples/node_modules/caniuse-lite/data/features/css-at-counter-style.js +0 -1
  646. package/examples/node_modules/caniuse-lite/data/features/css-autofill.js +0 -1
  647. package/examples/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +0 -1
  648. package/examples/node_modules/caniuse-lite/data/features/css-background-offsets.js +0 -1
  649. package/examples/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +0 -1
  650. package/examples/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +0 -1
  651. package/examples/node_modules/caniuse-lite/data/features/css-boxshadow.js +0 -1
  652. package/examples/node_modules/caniuse-lite/data/features/css-canvas.js +0 -1
  653. package/examples/node_modules/caniuse-lite/data/features/css-caret-color.js +0 -1
  654. package/examples/node_modules/caniuse-lite/data/features/css-cascade-layers.js +0 -1
  655. package/examples/node_modules/caniuse-lite/data/features/css-case-insensitive.js +0 -1
  656. package/examples/node_modules/caniuse-lite/data/features/css-clip-path.js +0 -1
  657. package/examples/node_modules/caniuse-lite/data/features/css-color-adjust.js +0 -1
  658. package/examples/node_modules/caniuse-lite/data/features/css-color-function.js +0 -1
  659. package/examples/node_modules/caniuse-lite/data/features/css-conic-gradients.js +0 -1
  660. package/examples/node_modules/caniuse-lite/data/features/css-container-queries.js +0 -1
  661. package/examples/node_modules/caniuse-lite/data/features/css-containment.js +0 -1
  662. package/examples/node_modules/caniuse-lite/data/features/css-content-visibility.js +0 -1
  663. package/examples/node_modules/caniuse-lite/data/features/css-counters.js +0 -1
  664. package/examples/node_modules/caniuse-lite/data/features/css-crisp-edges.js +0 -1
  665. package/examples/node_modules/caniuse-lite/data/features/css-cross-fade.js +0 -1
  666. package/examples/node_modules/caniuse-lite/data/features/css-default-pseudo.js +0 -1
  667. package/examples/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +0 -1
  668. package/examples/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +0 -1
  669. package/examples/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +0 -1
  670. package/examples/node_modules/caniuse-lite/data/features/css-display-contents.js +0 -1
  671. package/examples/node_modules/caniuse-lite/data/features/css-element-function.js +0 -1
  672. package/examples/node_modules/caniuse-lite/data/features/css-env-function.js +0 -1
  673. package/examples/node_modules/caniuse-lite/data/features/css-exclusions.js +0 -1
  674. package/examples/node_modules/caniuse-lite/data/features/css-featurequeries.js +0 -1
  675. package/examples/node_modules/caniuse-lite/data/features/css-file-selector-button.js +0 -1
  676. package/examples/node_modules/caniuse-lite/data/features/css-filter-function.js +0 -1
  677. package/examples/node_modules/caniuse-lite/data/features/css-filters.js +0 -1
  678. package/examples/node_modules/caniuse-lite/data/features/css-first-letter.js +0 -1
  679. package/examples/node_modules/caniuse-lite/data/features/css-first-line.js +0 -1
  680. package/examples/node_modules/caniuse-lite/data/features/css-fixed.js +0 -1
  681. package/examples/node_modules/caniuse-lite/data/features/css-focus-visible.js +0 -1
  682. package/examples/node_modules/caniuse-lite/data/features/css-focus-within.js +0 -1
  683. package/examples/node_modules/caniuse-lite/data/features/css-font-palette.js +0 -1
  684. package/examples/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +0 -1
  685. package/examples/node_modules/caniuse-lite/data/features/css-font-stretch.js +0 -1
  686. package/examples/node_modules/caniuse-lite/data/features/css-gencontent.js +0 -1
  687. package/examples/node_modules/caniuse-lite/data/features/css-gradients.js +0 -1
  688. package/examples/node_modules/caniuse-lite/data/features/css-grid.js +0 -1
  689. package/examples/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +0 -1
  690. package/examples/node_modules/caniuse-lite/data/features/css-has.js +0 -1
  691. package/examples/node_modules/caniuse-lite/data/features/css-hyphenate.js +0 -1
  692. package/examples/node_modules/caniuse-lite/data/features/css-hyphens.js +0 -1
  693. package/examples/node_modules/caniuse-lite/data/features/css-image-orientation.js +0 -1
  694. package/examples/node_modules/caniuse-lite/data/features/css-image-set.js +0 -1
  695. package/examples/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +0 -1
  696. package/examples/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +0 -1
  697. package/examples/node_modules/caniuse-lite/data/features/css-initial-letter.js +0 -1
  698. package/examples/node_modules/caniuse-lite/data/features/css-initial-value.js +0 -1
  699. package/examples/node_modules/caniuse-lite/data/features/css-lch-lab.js +0 -1
  700. package/examples/node_modules/caniuse-lite/data/features/css-letter-spacing.js +0 -1
  701. package/examples/node_modules/caniuse-lite/data/features/css-line-clamp.js +0 -1
  702. package/examples/node_modules/caniuse-lite/data/features/css-logical-props.js +0 -1
  703. package/examples/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +0 -1
  704. package/examples/node_modules/caniuse-lite/data/features/css-masks.js +0 -1
  705. package/examples/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +0 -1
  706. package/examples/node_modules/caniuse-lite/data/features/css-math-functions.js +0 -1
  707. package/examples/node_modules/caniuse-lite/data/features/css-media-interaction.js +0 -1
  708. package/examples/node_modules/caniuse-lite/data/features/css-media-resolution.js +0 -1
  709. package/examples/node_modules/caniuse-lite/data/features/css-media-scripting.js +0 -1
  710. package/examples/node_modules/caniuse-lite/data/features/css-mediaqueries.js +0 -1
  711. package/examples/node_modules/caniuse-lite/data/features/css-mixblendmode.js +0 -1
  712. package/examples/node_modules/caniuse-lite/data/features/css-motion-paths.js +0 -1
  713. package/examples/node_modules/caniuse-lite/data/features/css-namespaces.js +0 -1
  714. package/examples/node_modules/caniuse-lite/data/features/css-nesting.js +0 -1
  715. package/examples/node_modules/caniuse-lite/data/features/css-not-sel-list.js +0 -1
  716. package/examples/node_modules/caniuse-lite/data/features/css-nth-child-of.js +0 -1
  717. package/examples/node_modules/caniuse-lite/data/features/css-opacity.js +0 -1
  718. package/examples/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +0 -1
  719. package/examples/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +0 -1
  720. package/examples/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +0 -1
  721. package/examples/node_modules/caniuse-lite/data/features/css-overflow.js +0 -1
  722. package/examples/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +0 -1
  723. package/examples/node_modules/caniuse-lite/data/features/css-page-break.js +0 -1
  724. package/examples/node_modules/caniuse-lite/data/features/css-paged-media.js +0 -1
  725. package/examples/node_modules/caniuse-lite/data/features/css-paint-api.js +0 -1
  726. package/examples/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +0 -1
  727. package/examples/node_modules/caniuse-lite/data/features/css-placeholder.js +0 -1
  728. package/examples/node_modules/caniuse-lite/data/features/css-read-only-write.js +0 -1
  729. package/examples/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +0 -1
  730. package/examples/node_modules/caniuse-lite/data/features/css-reflections.js +0 -1
  731. package/examples/node_modules/caniuse-lite/data/features/css-regions.js +0 -1
  732. package/examples/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +0 -1
  733. package/examples/node_modules/caniuse-lite/data/features/css-resize.js +0 -1
  734. package/examples/node_modules/caniuse-lite/data/features/css-revert-value.js +0 -1
  735. package/examples/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +0 -1
  736. package/examples/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +0 -1
  737. package/examples/node_modules/caniuse-lite/data/features/css-scroll-timeline.js +0 -1
  738. package/examples/node_modules/caniuse-lite/data/features/css-scrollbar.js +0 -1
  739. package/examples/node_modules/caniuse-lite/data/features/css-sel2.js +0 -1
  740. package/examples/node_modules/caniuse-lite/data/features/css-sel3.js +0 -1
  741. package/examples/node_modules/caniuse-lite/data/features/css-selection.js +0 -1
  742. package/examples/node_modules/caniuse-lite/data/features/css-shapes.js +0 -1
  743. package/examples/node_modules/caniuse-lite/data/features/css-snappoints.js +0 -1
  744. package/examples/node_modules/caniuse-lite/data/features/css-sticky.js +0 -1
  745. package/examples/node_modules/caniuse-lite/data/features/css-subgrid.js +0 -1
  746. package/examples/node_modules/caniuse-lite/data/features/css-supports-api.js +0 -1
  747. package/examples/node_modules/caniuse-lite/data/features/css-table.js +0 -1
  748. package/examples/node_modules/caniuse-lite/data/features/css-text-align-last.js +0 -1
  749. package/examples/node_modules/caniuse-lite/data/features/css-text-indent.js +0 -1
  750. package/examples/node_modules/caniuse-lite/data/features/css-text-justify.js +0 -1
  751. package/examples/node_modules/caniuse-lite/data/features/css-text-orientation.js +0 -1
  752. package/examples/node_modules/caniuse-lite/data/features/css-text-spacing.js +0 -1
  753. package/examples/node_modules/caniuse-lite/data/features/css-textshadow.js +0 -1
  754. package/examples/node_modules/caniuse-lite/data/features/css-touch-action-2.js +0 -1
  755. package/examples/node_modules/caniuse-lite/data/features/css-touch-action.js +0 -1
  756. package/examples/node_modules/caniuse-lite/data/features/css-transitions.js +0 -1
  757. package/examples/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +0 -1
  758. package/examples/node_modules/caniuse-lite/data/features/css-unset-value.js +0 -1
  759. package/examples/node_modules/caniuse-lite/data/features/css-variables.js +0 -1
  760. package/examples/node_modules/caniuse-lite/data/features/css-when-else.js +0 -1
  761. package/examples/node_modules/caniuse-lite/data/features/css-widows-orphans.js +0 -1
  762. package/examples/node_modules/caniuse-lite/data/features/css-width-stretch.js +0 -1
  763. package/examples/node_modules/caniuse-lite/data/features/css-writing-mode.js +0 -1
  764. package/examples/node_modules/caniuse-lite/data/features/css-zoom.js +0 -1
  765. package/examples/node_modules/caniuse-lite/data/features/css3-attr.js +0 -1
  766. package/examples/node_modules/caniuse-lite/data/features/css3-boxsizing.js +0 -1
  767. package/examples/node_modules/caniuse-lite/data/features/css3-colors.js +0 -1
  768. package/examples/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +0 -1
  769. package/examples/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +0 -1
  770. package/examples/node_modules/caniuse-lite/data/features/css3-cursors.js +0 -1
  771. package/examples/node_modules/caniuse-lite/data/features/css3-tabsize.js +0 -1
  772. package/examples/node_modules/caniuse-lite/data/features/currentcolor.js +0 -1
  773. package/examples/node_modules/caniuse-lite/data/features/custom-elements.js +0 -1
  774. package/examples/node_modules/caniuse-lite/data/features/custom-elementsv1.js +0 -1
  775. package/examples/node_modules/caniuse-lite/data/features/customevent.js +0 -1
  776. package/examples/node_modules/caniuse-lite/data/features/datalist.js +0 -1
  777. package/examples/node_modules/caniuse-lite/data/features/dataset.js +0 -1
  778. package/examples/node_modules/caniuse-lite/data/features/datauri.js +0 -1
  779. package/examples/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +0 -1
  780. package/examples/node_modules/caniuse-lite/data/features/decorators.js +0 -1
  781. package/examples/node_modules/caniuse-lite/data/features/details.js +0 -1
  782. package/examples/node_modules/caniuse-lite/data/features/deviceorientation.js +0 -1
  783. package/examples/node_modules/caniuse-lite/data/features/devicepixelratio.js +0 -1
  784. package/examples/node_modules/caniuse-lite/data/features/dialog.js +0 -1
  785. package/examples/node_modules/caniuse-lite/data/features/dispatchevent.js +0 -1
  786. package/examples/node_modules/caniuse-lite/data/features/dnssec.js +0 -1
  787. package/examples/node_modules/caniuse-lite/data/features/do-not-track.js +0 -1
  788. package/examples/node_modules/caniuse-lite/data/features/document-currentscript.js +0 -1
  789. package/examples/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +0 -1
  790. package/examples/node_modules/caniuse-lite/data/features/document-execcommand.js +0 -1
  791. package/examples/node_modules/caniuse-lite/data/features/document-policy.js +0 -1
  792. package/examples/node_modules/caniuse-lite/data/features/document-scrollingelement.js +0 -1
  793. package/examples/node_modules/caniuse-lite/data/features/documenthead.js +0 -1
  794. package/examples/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +0 -1
  795. package/examples/node_modules/caniuse-lite/data/features/dom-range.js +0 -1
  796. package/examples/node_modules/caniuse-lite/data/features/domcontentloaded.js +0 -1
  797. package/examples/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js +0 -1
  798. package/examples/node_modules/caniuse-lite/data/features/dommatrix.js +0 -1
  799. package/examples/node_modules/caniuse-lite/data/features/download.js +0 -1
  800. package/examples/node_modules/caniuse-lite/data/features/dragndrop.js +0 -1
  801. package/examples/node_modules/caniuse-lite/data/features/element-closest.js +0 -1
  802. package/examples/node_modules/caniuse-lite/data/features/element-from-point.js +0 -1
  803. package/examples/node_modules/caniuse-lite/data/features/element-scroll-methods.js +0 -1
  804. package/examples/node_modules/caniuse-lite/data/features/eme.js +0 -1
  805. package/examples/node_modules/caniuse-lite/data/features/eot.js +0 -1
  806. package/examples/node_modules/caniuse-lite/data/features/es5.js +0 -1
  807. package/examples/node_modules/caniuse-lite/data/features/es6-class.js +0 -1
  808. package/examples/node_modules/caniuse-lite/data/features/es6-generators.js +0 -1
  809. package/examples/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +0 -1
  810. package/examples/node_modules/caniuse-lite/data/features/es6-module.js +0 -1
  811. package/examples/node_modules/caniuse-lite/data/features/es6-number.js +0 -1
  812. package/examples/node_modules/caniuse-lite/data/features/es6-string-includes.js +0 -1
  813. package/examples/node_modules/caniuse-lite/data/features/es6.js +0 -1
  814. package/examples/node_modules/caniuse-lite/data/features/eventsource.js +0 -1
  815. package/examples/node_modules/caniuse-lite/data/features/extended-system-fonts.js +0 -1
  816. package/examples/node_modules/caniuse-lite/data/features/feature-policy.js +0 -1
  817. package/examples/node_modules/caniuse-lite/data/features/fetch.js +0 -1
  818. package/examples/node_modules/caniuse-lite/data/features/fieldset-disabled.js +0 -1
  819. package/examples/node_modules/caniuse-lite/data/features/fileapi.js +0 -1
  820. package/examples/node_modules/caniuse-lite/data/features/filereader.js +0 -1
  821. package/examples/node_modules/caniuse-lite/data/features/filereadersync.js +0 -1
  822. package/examples/node_modules/caniuse-lite/data/features/filesystem.js +0 -1
  823. package/examples/node_modules/caniuse-lite/data/features/flac.js +0 -1
  824. package/examples/node_modules/caniuse-lite/data/features/flexbox-gap.js +0 -1
  825. package/examples/node_modules/caniuse-lite/data/features/flexbox.js +0 -1
  826. package/examples/node_modules/caniuse-lite/data/features/flow-root.js +0 -1
  827. package/examples/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +0 -1
  828. package/examples/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js +0 -1
  829. package/examples/node_modules/caniuse-lite/data/features/font-family-system-ui.js +0 -1
  830. package/examples/node_modules/caniuse-lite/data/features/font-feature.js +0 -1
  831. package/examples/node_modules/caniuse-lite/data/features/font-kerning.js +0 -1
  832. package/examples/node_modules/caniuse-lite/data/features/font-loading.js +0 -1
  833. package/examples/node_modules/caniuse-lite/data/features/font-metrics-overrides.js +0 -1
  834. package/examples/node_modules/caniuse-lite/data/features/font-size-adjust.js +0 -1
  835. package/examples/node_modules/caniuse-lite/data/features/font-smooth.js +0 -1
  836. package/examples/node_modules/caniuse-lite/data/features/font-unicode-range.js +0 -1
  837. package/examples/node_modules/caniuse-lite/data/features/font-variant-alternates.js +0 -1
  838. package/examples/node_modules/caniuse-lite/data/features/font-variant-east-asian.js +0 -1
  839. package/examples/node_modules/caniuse-lite/data/features/font-variant-numeric.js +0 -1
  840. package/examples/node_modules/caniuse-lite/data/features/fontface.js +0 -1
  841. package/examples/node_modules/caniuse-lite/data/features/form-attribute.js +0 -1
  842. package/examples/node_modules/caniuse-lite/data/features/form-submit-attributes.js +0 -1
  843. package/examples/node_modules/caniuse-lite/data/features/form-validation.js +0 -1
  844. package/examples/node_modules/caniuse-lite/data/features/forms.js +0 -1
  845. package/examples/node_modules/caniuse-lite/data/features/fullscreen.js +0 -1
  846. package/examples/node_modules/caniuse-lite/data/features/gamepad.js +0 -1
  847. package/examples/node_modules/caniuse-lite/data/features/geolocation.js +0 -1
  848. package/examples/node_modules/caniuse-lite/data/features/getboundingclientrect.js +0 -1
  849. package/examples/node_modules/caniuse-lite/data/features/getcomputedstyle.js +0 -1
  850. package/examples/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +0 -1
  851. package/examples/node_modules/caniuse-lite/data/features/getrandomvalues.js +0 -1
  852. package/examples/node_modules/caniuse-lite/data/features/gyroscope.js +0 -1
  853. package/examples/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +0 -1
  854. package/examples/node_modules/caniuse-lite/data/features/hashchange.js +0 -1
  855. package/examples/node_modules/caniuse-lite/data/features/heif.js +0 -1
  856. package/examples/node_modules/caniuse-lite/data/features/hevc.js +0 -1
  857. package/examples/node_modules/caniuse-lite/data/features/hidden.js +0 -1
  858. package/examples/node_modules/caniuse-lite/data/features/high-resolution-time.js +0 -1
  859. package/examples/node_modules/caniuse-lite/data/features/history.js +0 -1
  860. package/examples/node_modules/caniuse-lite/data/features/html-media-capture.js +0 -1
  861. package/examples/node_modules/caniuse-lite/data/features/html5semantic.js +0 -1
  862. package/examples/node_modules/caniuse-lite/data/features/http-live-streaming.js +0 -1
  863. package/examples/node_modules/caniuse-lite/data/features/http2.js +0 -1
  864. package/examples/node_modules/caniuse-lite/data/features/http3.js +0 -1
  865. package/examples/node_modules/caniuse-lite/data/features/iframe-sandbox.js +0 -1
  866. package/examples/node_modules/caniuse-lite/data/features/iframe-seamless.js +0 -1
  867. package/examples/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +0 -1
  868. package/examples/node_modules/caniuse-lite/data/features/imagecapture.js +0 -1
  869. package/examples/node_modules/caniuse-lite/data/features/ime.js +0 -1
  870. package/examples/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +0 -1
  871. package/examples/node_modules/caniuse-lite/data/features/import-maps.js +0 -1
  872. package/examples/node_modules/caniuse-lite/data/features/imports.js +0 -1
  873. package/examples/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +0 -1
  874. package/examples/node_modules/caniuse-lite/data/features/indexeddb.js +0 -1
  875. package/examples/node_modules/caniuse-lite/data/features/indexeddb2.js +0 -1
  876. package/examples/node_modules/caniuse-lite/data/features/inline-block.js +0 -1
  877. package/examples/node_modules/caniuse-lite/data/features/innertext.js +0 -1
  878. package/examples/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +0 -1
  879. package/examples/node_modules/caniuse-lite/data/features/input-color.js +0 -1
  880. package/examples/node_modules/caniuse-lite/data/features/input-datetime.js +0 -1
  881. package/examples/node_modules/caniuse-lite/data/features/input-email-tel-url.js +0 -1
  882. package/examples/node_modules/caniuse-lite/data/features/input-event.js +0 -1
  883. package/examples/node_modules/caniuse-lite/data/features/input-file-accept.js +0 -1
  884. package/examples/node_modules/caniuse-lite/data/features/input-file-directory.js +0 -1
  885. package/examples/node_modules/caniuse-lite/data/features/input-file-multiple.js +0 -1
  886. package/examples/node_modules/caniuse-lite/data/features/input-inputmode.js +0 -1
  887. package/examples/node_modules/caniuse-lite/data/features/input-minlength.js +0 -1
  888. package/examples/node_modules/caniuse-lite/data/features/input-number.js +0 -1
  889. package/examples/node_modules/caniuse-lite/data/features/input-pattern.js +0 -1
  890. package/examples/node_modules/caniuse-lite/data/features/input-placeholder.js +0 -1
  891. package/examples/node_modules/caniuse-lite/data/features/input-range.js +0 -1
  892. package/examples/node_modules/caniuse-lite/data/features/input-search.js +0 -1
  893. package/examples/node_modules/caniuse-lite/data/features/input-selection.js +0 -1
  894. package/examples/node_modules/caniuse-lite/data/features/insert-adjacent.js +0 -1
  895. package/examples/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +0 -1
  896. package/examples/node_modules/caniuse-lite/data/features/internationalization.js +0 -1
  897. package/examples/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +0 -1
  898. package/examples/node_modules/caniuse-lite/data/features/intersectionobserver.js +0 -1
  899. package/examples/node_modules/caniuse-lite/data/features/intl-pluralrules.js +0 -1
  900. package/examples/node_modules/caniuse-lite/data/features/intrinsic-width.js +0 -1
  901. package/examples/node_modules/caniuse-lite/data/features/jpeg2000.js +0 -1
  902. package/examples/node_modules/caniuse-lite/data/features/jpegxl.js +0 -1
  903. package/examples/node_modules/caniuse-lite/data/features/jpegxr.js +0 -1
  904. package/examples/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +0 -1
  905. package/examples/node_modules/caniuse-lite/data/features/json.js +0 -1
  906. package/examples/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +0 -1
  907. package/examples/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +0 -1
  908. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +0 -1
  909. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-code.js +0 -1
  910. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +0 -1
  911. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-key.js +0 -1
  912. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-location.js +0 -1
  913. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-which.js +0 -1
  914. package/examples/node_modules/caniuse-lite/data/features/lazyload.js +0 -1
  915. package/examples/node_modules/caniuse-lite/data/features/let.js +0 -1
  916. package/examples/node_modules/caniuse-lite/data/features/link-icon-png.js +0 -1
  917. package/examples/node_modules/caniuse-lite/data/features/link-icon-svg.js +0 -1
  918. package/examples/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +0 -1
  919. package/examples/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +0 -1
  920. package/examples/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +0 -1
  921. package/examples/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +0 -1
  922. package/examples/node_modules/caniuse-lite/data/features/link-rel-preload.js +0 -1
  923. package/examples/node_modules/caniuse-lite/data/features/link-rel-prerender.js +0 -1
  924. package/examples/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +0 -1
  925. package/examples/node_modules/caniuse-lite/data/features/localecompare.js +0 -1
  926. package/examples/node_modules/caniuse-lite/data/features/magnetometer.js +0 -1
  927. package/examples/node_modules/caniuse-lite/data/features/matchesselector.js +0 -1
  928. package/examples/node_modules/caniuse-lite/data/features/matchmedia.js +0 -1
  929. package/examples/node_modules/caniuse-lite/data/features/mathml.js +0 -1
  930. package/examples/node_modules/caniuse-lite/data/features/maxlength.js +0 -1
  931. package/examples/node_modules/caniuse-lite/data/features/media-attribute.js +0 -1
  932. package/examples/node_modules/caniuse-lite/data/features/media-fragments.js +0 -1
  933. package/examples/node_modules/caniuse-lite/data/features/media-session-api.js +0 -1
  934. package/examples/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +0 -1
  935. package/examples/node_modules/caniuse-lite/data/features/mediarecorder.js +0 -1
  936. package/examples/node_modules/caniuse-lite/data/features/mediasource.js +0 -1
  937. package/examples/node_modules/caniuse-lite/data/features/menu.js +0 -1
  938. package/examples/node_modules/caniuse-lite/data/features/meta-theme-color.js +0 -1
  939. package/examples/node_modules/caniuse-lite/data/features/meter.js +0 -1
  940. package/examples/node_modules/caniuse-lite/data/features/midi.js +0 -1
  941. package/examples/node_modules/caniuse-lite/data/features/minmaxwh.js +0 -1
  942. package/examples/node_modules/caniuse-lite/data/features/mp3.js +0 -1
  943. package/examples/node_modules/caniuse-lite/data/features/mpeg-dash.js +0 -1
  944. package/examples/node_modules/caniuse-lite/data/features/mpeg4.js +0 -1
  945. package/examples/node_modules/caniuse-lite/data/features/multibackgrounds.js +0 -1
  946. package/examples/node_modules/caniuse-lite/data/features/multicolumn.js +0 -1
  947. package/examples/node_modules/caniuse-lite/data/features/mutation-events.js +0 -1
  948. package/examples/node_modules/caniuse-lite/data/features/mutationobserver.js +0 -1
  949. package/examples/node_modules/caniuse-lite/data/features/namevalue-storage.js +0 -1
  950. package/examples/node_modules/caniuse-lite/data/features/native-filesystem-api.js +0 -1
  951. package/examples/node_modules/caniuse-lite/data/features/nav-timing.js +0 -1
  952. package/examples/node_modules/caniuse-lite/data/features/navigator-language.js +0 -1
  953. package/examples/node_modules/caniuse-lite/data/features/netinfo.js +0 -1
  954. package/examples/node_modules/caniuse-lite/data/features/notifications.js +0 -1
  955. package/examples/node_modules/caniuse-lite/data/features/object-entries.js +0 -1
  956. package/examples/node_modules/caniuse-lite/data/features/object-fit.js +0 -1
  957. package/examples/node_modules/caniuse-lite/data/features/object-observe.js +0 -1
  958. package/examples/node_modules/caniuse-lite/data/features/object-values.js +0 -1
  959. package/examples/node_modules/caniuse-lite/data/features/objectrtc.js +0 -1
  960. package/examples/node_modules/caniuse-lite/data/features/offline-apps.js +0 -1
  961. package/examples/node_modules/caniuse-lite/data/features/offscreencanvas.js +0 -1
  962. package/examples/node_modules/caniuse-lite/data/features/ogg-vorbis.js +0 -1
  963. package/examples/node_modules/caniuse-lite/data/features/ogv.js +0 -1
  964. package/examples/node_modules/caniuse-lite/data/features/ol-reversed.js +0 -1
  965. package/examples/node_modules/caniuse-lite/data/features/once-event-listener.js +0 -1
  966. package/examples/node_modules/caniuse-lite/data/features/online-status.js +0 -1
  967. package/examples/node_modules/caniuse-lite/data/features/opus.js +0 -1
  968. package/examples/node_modules/caniuse-lite/data/features/orientation-sensor.js +0 -1
  969. package/examples/node_modules/caniuse-lite/data/features/outline.js +0 -1
  970. package/examples/node_modules/caniuse-lite/data/features/pad-start-end.js +0 -1
  971. package/examples/node_modules/caniuse-lite/data/features/page-transition-events.js +0 -1
  972. package/examples/node_modules/caniuse-lite/data/features/pagevisibility.js +0 -1
  973. package/examples/node_modules/caniuse-lite/data/features/passive-event-listener.js +0 -1
  974. package/examples/node_modules/caniuse-lite/data/features/passwordrules.js +0 -1
  975. package/examples/node_modules/caniuse-lite/data/features/path2d.js +0 -1
  976. package/examples/node_modules/caniuse-lite/data/features/payment-request.js +0 -1
  977. package/examples/node_modules/caniuse-lite/data/features/pdf-viewer.js +0 -1
  978. package/examples/node_modules/caniuse-lite/data/features/permissions-api.js +0 -1
  979. package/examples/node_modules/caniuse-lite/data/features/permissions-policy.js +0 -1
  980. package/examples/node_modules/caniuse-lite/data/features/picture-in-picture.js +0 -1
  981. package/examples/node_modules/caniuse-lite/data/features/picture.js +0 -1
  982. package/examples/node_modules/caniuse-lite/data/features/ping.js +0 -1
  983. package/examples/node_modules/caniuse-lite/data/features/png-alpha.js +0 -1
  984. package/examples/node_modules/caniuse-lite/data/features/pointer-events.js +0 -1
  985. package/examples/node_modules/caniuse-lite/data/features/pointer.js +0 -1
  986. package/examples/node_modules/caniuse-lite/data/features/pointerlock.js +0 -1
  987. package/examples/node_modules/caniuse-lite/data/features/portals.js +0 -1
  988. package/examples/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +0 -1
  989. package/examples/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +0 -1
  990. package/examples/node_modules/caniuse-lite/data/features/private-class-fields.js +0 -1
  991. package/examples/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js +0 -1
  992. package/examples/node_modules/caniuse-lite/data/features/progress.js +0 -1
  993. package/examples/node_modules/caniuse-lite/data/features/promise-finally.js +0 -1
  994. package/examples/node_modules/caniuse-lite/data/features/promises.js +0 -1
  995. package/examples/node_modules/caniuse-lite/data/features/proximity.js +0 -1
  996. package/examples/node_modules/caniuse-lite/data/features/proxy.js +0 -1
  997. package/examples/node_modules/caniuse-lite/data/features/public-class-fields.js +0 -1
  998. package/examples/node_modules/caniuse-lite/data/features/publickeypinning.js +0 -1
  999. package/examples/node_modules/caniuse-lite/data/features/push-api.js +0 -1
  1000. package/examples/node_modules/caniuse-lite/data/features/queryselector.js +0 -1
  1001. package/examples/node_modules/caniuse-lite/data/features/readonly-attr.js +0 -1
  1002. package/examples/node_modules/caniuse-lite/data/features/referrer-policy.js +0 -1
  1003. package/examples/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +0 -1
  1004. package/examples/node_modules/caniuse-lite/data/features/rel-noopener.js +0 -1
  1005. package/examples/node_modules/caniuse-lite/data/features/rel-noreferrer.js +0 -1
  1006. package/examples/node_modules/caniuse-lite/data/features/rellist.js +0 -1
  1007. package/examples/node_modules/caniuse-lite/data/features/rem.js +0 -1
  1008. package/examples/node_modules/caniuse-lite/data/features/requestanimationframe.js +0 -1
  1009. package/examples/node_modules/caniuse-lite/data/features/requestidlecallback.js +0 -1
  1010. package/examples/node_modules/caniuse-lite/data/features/resizeobserver.js +0 -1
  1011. package/examples/node_modules/caniuse-lite/data/features/resource-timing.js +0 -1
  1012. package/examples/node_modules/caniuse-lite/data/features/rest-parameters.js +0 -1
  1013. package/examples/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +0 -1
  1014. package/examples/node_modules/caniuse-lite/data/features/ruby.js +0 -1
  1015. package/examples/node_modules/caniuse-lite/data/features/run-in.js +0 -1
  1016. package/examples/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +0 -1
  1017. package/examples/node_modules/caniuse-lite/data/features/screen-orientation.js +0 -1
  1018. package/examples/node_modules/caniuse-lite/data/features/script-async.js +0 -1
  1019. package/examples/node_modules/caniuse-lite/data/features/script-defer.js +0 -1
  1020. package/examples/node_modules/caniuse-lite/data/features/scrollintoview.js +0 -1
  1021. package/examples/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +0 -1
  1022. package/examples/node_modules/caniuse-lite/data/features/sdch.js +0 -1
  1023. package/examples/node_modules/caniuse-lite/data/features/selection-api.js +0 -1
  1024. package/examples/node_modules/caniuse-lite/data/features/server-timing.js +0 -1
  1025. package/examples/node_modules/caniuse-lite/data/features/serviceworkers.js +0 -1
  1026. package/examples/node_modules/caniuse-lite/data/features/setimmediate.js +0 -1
  1027. package/examples/node_modules/caniuse-lite/data/features/sha-2.js +0 -1
  1028. package/examples/node_modules/caniuse-lite/data/features/shadowdom.js +0 -1
  1029. package/examples/node_modules/caniuse-lite/data/features/shadowdomv1.js +0 -1
  1030. package/examples/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +0 -1
  1031. package/examples/node_modules/caniuse-lite/data/features/sharedworkers.js +0 -1
  1032. package/examples/node_modules/caniuse-lite/data/features/sni.js +0 -1
  1033. package/examples/node_modules/caniuse-lite/data/features/spdy.js +0 -1
  1034. package/examples/node_modules/caniuse-lite/data/features/speech-recognition.js +0 -1
  1035. package/examples/node_modules/caniuse-lite/data/features/speech-synthesis.js +0 -1
  1036. package/examples/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +0 -1
  1037. package/examples/node_modules/caniuse-lite/data/features/sql-storage.js +0 -1
  1038. package/examples/node_modules/caniuse-lite/data/features/srcset.js +0 -1
  1039. package/examples/node_modules/caniuse-lite/data/features/stream.js +0 -1
  1040. package/examples/node_modules/caniuse-lite/data/features/streams.js +0 -1
  1041. package/examples/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +0 -1
  1042. package/examples/node_modules/caniuse-lite/data/features/style-scoped.js +0 -1
  1043. package/examples/node_modules/caniuse-lite/data/features/subresource-integrity.js +0 -1
  1044. package/examples/node_modules/caniuse-lite/data/features/svg-css.js +0 -1
  1045. package/examples/node_modules/caniuse-lite/data/features/svg-filters.js +0 -1
  1046. package/examples/node_modules/caniuse-lite/data/features/svg-fonts.js +0 -1
  1047. package/examples/node_modules/caniuse-lite/data/features/svg-fragment.js +0 -1
  1048. package/examples/node_modules/caniuse-lite/data/features/svg-html.js +0 -1
  1049. package/examples/node_modules/caniuse-lite/data/features/svg-html5.js +0 -1
  1050. package/examples/node_modules/caniuse-lite/data/features/svg-img.js +0 -1
  1051. package/examples/node_modules/caniuse-lite/data/features/svg-smil.js +0 -1
  1052. package/examples/node_modules/caniuse-lite/data/features/svg.js +0 -1
  1053. package/examples/node_modules/caniuse-lite/data/features/sxg.js +0 -1
  1054. package/examples/node_modules/caniuse-lite/data/features/tabindex-attr.js +0 -1
  1055. package/examples/node_modules/caniuse-lite/data/features/template-literals.js +0 -1
  1056. package/examples/node_modules/caniuse-lite/data/features/template.js +0 -1
  1057. package/examples/node_modules/caniuse-lite/data/features/temporal.js +0 -1
  1058. package/examples/node_modules/caniuse-lite/data/features/testfeat.js +0 -1
  1059. package/examples/node_modules/caniuse-lite/data/features/text-decoration.js +0 -1
  1060. package/examples/node_modules/caniuse-lite/data/features/text-emphasis.js +0 -1
  1061. package/examples/node_modules/caniuse-lite/data/features/text-overflow.js +0 -1
  1062. package/examples/node_modules/caniuse-lite/data/features/text-size-adjust.js +0 -1
  1063. package/examples/node_modules/caniuse-lite/data/features/text-stroke.js +0 -1
  1064. package/examples/node_modules/caniuse-lite/data/features/text-underline-offset.js +0 -1
  1065. package/examples/node_modules/caniuse-lite/data/features/textcontent.js +0 -1
  1066. package/examples/node_modules/caniuse-lite/data/features/textencoder.js +0 -1
  1067. package/examples/node_modules/caniuse-lite/data/features/tls1-1.js +0 -1
  1068. package/examples/node_modules/caniuse-lite/data/features/tls1-2.js +0 -1
  1069. package/examples/node_modules/caniuse-lite/data/features/tls1-3.js +0 -1
  1070. package/examples/node_modules/caniuse-lite/data/features/token-binding.js +0 -1
  1071. package/examples/node_modules/caniuse-lite/data/features/touch.js +0 -1
  1072. package/examples/node_modules/caniuse-lite/data/features/transforms2d.js +0 -1
  1073. package/examples/node_modules/caniuse-lite/data/features/transforms3d.js +0 -1
  1074. package/examples/node_modules/caniuse-lite/data/features/trusted-types.js +0 -1
  1075. package/examples/node_modules/caniuse-lite/data/features/ttf.js +0 -1
  1076. package/examples/node_modules/caniuse-lite/data/features/typedarrays.js +0 -1
  1077. package/examples/node_modules/caniuse-lite/data/features/u2f.js +0 -1
  1078. package/examples/node_modules/caniuse-lite/data/features/unhandledrejection.js +0 -1
  1079. package/examples/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +0 -1
  1080. package/examples/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +0 -1
  1081. package/examples/node_modules/caniuse-lite/data/features/url.js +0 -1
  1082. package/examples/node_modules/caniuse-lite/data/features/urlsearchparams.js +0 -1
  1083. package/examples/node_modules/caniuse-lite/data/features/use-strict.js +0 -1
  1084. package/examples/node_modules/caniuse-lite/data/features/user-select-none.js +0 -1
  1085. package/examples/node_modules/caniuse-lite/data/features/user-timing.js +0 -1
  1086. package/examples/node_modules/caniuse-lite/data/features/variable-fonts.js +0 -1
  1087. package/examples/node_modules/caniuse-lite/data/features/vector-effect.js +0 -1
  1088. package/examples/node_modules/caniuse-lite/data/features/vibration.js +0 -1
  1089. package/examples/node_modules/caniuse-lite/data/features/video.js +0 -1
  1090. package/examples/node_modules/caniuse-lite/data/features/videotracks.js +0 -1
  1091. package/examples/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +0 -1
  1092. package/examples/node_modules/caniuse-lite/data/features/viewport-units.js +0 -1
  1093. package/examples/node_modules/caniuse-lite/data/features/wai-aria.js +0 -1
  1094. package/examples/node_modules/caniuse-lite/data/features/wake-lock.js +0 -1
  1095. package/examples/node_modules/caniuse-lite/data/features/wasm.js +0 -1
  1096. package/examples/node_modules/caniuse-lite/data/features/wav.js +0 -1
  1097. package/examples/node_modules/caniuse-lite/data/features/wbr-element.js +0 -1
  1098. package/examples/node_modules/caniuse-lite/data/features/web-animation.js +0 -1
  1099. package/examples/node_modules/caniuse-lite/data/features/web-app-manifest.js +0 -1
  1100. package/examples/node_modules/caniuse-lite/data/features/web-bluetooth.js +0 -1
  1101. package/examples/node_modules/caniuse-lite/data/features/web-serial.js +0 -1
  1102. package/examples/node_modules/caniuse-lite/data/features/web-share.js +0 -1
  1103. package/examples/node_modules/caniuse-lite/data/features/webauthn.js +0 -1
  1104. package/examples/node_modules/caniuse-lite/data/features/webgl.js +0 -1
  1105. package/examples/node_modules/caniuse-lite/data/features/webgl2.js +0 -1
  1106. package/examples/node_modules/caniuse-lite/data/features/webgpu.js +0 -1
  1107. package/examples/node_modules/caniuse-lite/data/features/webhid.js +0 -1
  1108. package/examples/node_modules/caniuse-lite/data/features/webkit-user-drag.js +0 -1
  1109. package/examples/node_modules/caniuse-lite/data/features/webm.js +0 -1
  1110. package/examples/node_modules/caniuse-lite/data/features/webnfc.js +0 -1
  1111. package/examples/node_modules/caniuse-lite/data/features/webp.js +0 -1
  1112. package/examples/node_modules/caniuse-lite/data/features/websockets.js +0 -1
  1113. package/examples/node_modules/caniuse-lite/data/features/webusb.js +0 -1
  1114. package/examples/node_modules/caniuse-lite/data/features/webvr.js +0 -1
  1115. package/examples/node_modules/caniuse-lite/data/features/webvtt.js +0 -1
  1116. package/examples/node_modules/caniuse-lite/data/features/webworkers.js +0 -1
  1117. package/examples/node_modules/caniuse-lite/data/features/webxr.js +0 -1
  1118. package/examples/node_modules/caniuse-lite/data/features/will-change.js +0 -1
  1119. package/examples/node_modules/caniuse-lite/data/features/woff.js +0 -1
  1120. package/examples/node_modules/caniuse-lite/data/features/woff2.js +0 -1
  1121. package/examples/node_modules/caniuse-lite/data/features/word-break.js +0 -1
  1122. package/examples/node_modules/caniuse-lite/data/features/wordwrap.js +0 -1
  1123. package/examples/node_modules/caniuse-lite/data/features/x-doc-messaging.js +0 -1
  1124. package/examples/node_modules/caniuse-lite/data/features/x-frame-options.js +0 -1
  1125. package/examples/node_modules/caniuse-lite/data/features/xhr2.js +0 -1
  1126. package/examples/node_modules/caniuse-lite/data/features/xhtml.js +0 -1
  1127. package/examples/node_modules/caniuse-lite/data/features/xhtmlsmil.js +0 -1
  1128. package/examples/node_modules/caniuse-lite/data/features/xml-serializer.js +0 -1
  1129. package/examples/node_modules/caniuse-lite/data/features.js +0 -1
  1130. package/examples/node_modules/caniuse-lite/data/regions/AD.js +0 -1
  1131. package/examples/node_modules/caniuse-lite/data/regions/AE.js +0 -1
  1132. package/examples/node_modules/caniuse-lite/data/regions/AF.js +0 -1
  1133. package/examples/node_modules/caniuse-lite/data/regions/AG.js +0 -1
  1134. package/examples/node_modules/caniuse-lite/data/regions/AI.js +0 -1
  1135. package/examples/node_modules/caniuse-lite/data/regions/AL.js +0 -1
  1136. package/examples/node_modules/caniuse-lite/data/regions/AM.js +0 -1
  1137. package/examples/node_modules/caniuse-lite/data/regions/AO.js +0 -1
  1138. package/examples/node_modules/caniuse-lite/data/regions/AR.js +0 -1
  1139. package/examples/node_modules/caniuse-lite/data/regions/AS.js +0 -1
  1140. package/examples/node_modules/caniuse-lite/data/regions/AT.js +0 -1
  1141. package/examples/node_modules/caniuse-lite/data/regions/AU.js +0 -1
  1142. package/examples/node_modules/caniuse-lite/data/regions/AW.js +0 -1
  1143. package/examples/node_modules/caniuse-lite/data/regions/AX.js +0 -1
  1144. package/examples/node_modules/caniuse-lite/data/regions/AZ.js +0 -1
  1145. package/examples/node_modules/caniuse-lite/data/regions/BA.js +0 -1
  1146. package/examples/node_modules/caniuse-lite/data/regions/BB.js +0 -1
  1147. package/examples/node_modules/caniuse-lite/data/regions/BD.js +0 -1
  1148. package/examples/node_modules/caniuse-lite/data/regions/BE.js +0 -1
  1149. package/examples/node_modules/caniuse-lite/data/regions/BF.js +0 -1
  1150. package/examples/node_modules/caniuse-lite/data/regions/BG.js +0 -1
  1151. package/examples/node_modules/caniuse-lite/data/regions/BH.js +0 -1
  1152. package/examples/node_modules/caniuse-lite/data/regions/BI.js +0 -1
  1153. package/examples/node_modules/caniuse-lite/data/regions/BJ.js +0 -1
  1154. package/examples/node_modules/caniuse-lite/data/regions/BM.js +0 -1
  1155. package/examples/node_modules/caniuse-lite/data/regions/BN.js +0 -1
  1156. package/examples/node_modules/caniuse-lite/data/regions/BO.js +0 -1
  1157. package/examples/node_modules/caniuse-lite/data/regions/BR.js +0 -1
  1158. package/examples/node_modules/caniuse-lite/data/regions/BS.js +0 -1
  1159. package/examples/node_modules/caniuse-lite/data/regions/BT.js +0 -1
  1160. package/examples/node_modules/caniuse-lite/data/regions/BW.js +0 -1
  1161. package/examples/node_modules/caniuse-lite/data/regions/BY.js +0 -1
  1162. package/examples/node_modules/caniuse-lite/data/regions/BZ.js +0 -1
  1163. package/examples/node_modules/caniuse-lite/data/regions/CA.js +0 -1
  1164. package/examples/node_modules/caniuse-lite/data/regions/CD.js +0 -1
  1165. package/examples/node_modules/caniuse-lite/data/regions/CF.js +0 -1
  1166. package/examples/node_modules/caniuse-lite/data/regions/CG.js +0 -1
  1167. package/examples/node_modules/caniuse-lite/data/regions/CH.js +0 -1
  1168. package/examples/node_modules/caniuse-lite/data/regions/CI.js +0 -1
  1169. package/examples/node_modules/caniuse-lite/data/regions/CK.js +0 -1
  1170. package/examples/node_modules/caniuse-lite/data/regions/CL.js +0 -1
  1171. package/examples/node_modules/caniuse-lite/data/regions/CM.js +0 -1
  1172. package/examples/node_modules/caniuse-lite/data/regions/CN.js +0 -1
  1173. package/examples/node_modules/caniuse-lite/data/regions/CO.js +0 -1
  1174. package/examples/node_modules/caniuse-lite/data/regions/CR.js +0 -1
  1175. package/examples/node_modules/caniuse-lite/data/regions/CU.js +0 -1
  1176. package/examples/node_modules/caniuse-lite/data/regions/CV.js +0 -1
  1177. package/examples/node_modules/caniuse-lite/data/regions/CX.js +0 -1
  1178. package/examples/node_modules/caniuse-lite/data/regions/CY.js +0 -1
  1179. package/examples/node_modules/caniuse-lite/data/regions/CZ.js +0 -1
  1180. package/examples/node_modules/caniuse-lite/data/regions/DE.js +0 -1
  1181. package/examples/node_modules/caniuse-lite/data/regions/DJ.js +0 -1
  1182. package/examples/node_modules/caniuse-lite/data/regions/DK.js +0 -1
  1183. package/examples/node_modules/caniuse-lite/data/regions/DM.js +0 -1
  1184. package/examples/node_modules/caniuse-lite/data/regions/DO.js +0 -1
  1185. package/examples/node_modules/caniuse-lite/data/regions/DZ.js +0 -1
  1186. package/examples/node_modules/caniuse-lite/data/regions/EC.js +0 -1
  1187. package/examples/node_modules/caniuse-lite/data/regions/EE.js +0 -1
  1188. package/examples/node_modules/caniuse-lite/data/regions/EG.js +0 -1
  1189. package/examples/node_modules/caniuse-lite/data/regions/ER.js +0 -1
  1190. package/examples/node_modules/caniuse-lite/data/regions/ES.js +0 -1
  1191. package/examples/node_modules/caniuse-lite/data/regions/ET.js +0 -1
  1192. package/examples/node_modules/caniuse-lite/data/regions/FI.js +0 -1
  1193. package/examples/node_modules/caniuse-lite/data/regions/FJ.js +0 -1
  1194. package/examples/node_modules/caniuse-lite/data/regions/FK.js +0 -1
  1195. package/examples/node_modules/caniuse-lite/data/regions/FM.js +0 -1
  1196. package/examples/node_modules/caniuse-lite/data/regions/FO.js +0 -1
  1197. package/examples/node_modules/caniuse-lite/data/regions/FR.js +0 -1
  1198. package/examples/node_modules/caniuse-lite/data/regions/GA.js +0 -1
  1199. package/examples/node_modules/caniuse-lite/data/regions/GB.js +0 -1
  1200. package/examples/node_modules/caniuse-lite/data/regions/GD.js +0 -1
  1201. package/examples/node_modules/caniuse-lite/data/regions/GE.js +0 -1
  1202. package/examples/node_modules/caniuse-lite/data/regions/GF.js +0 -1
  1203. package/examples/node_modules/caniuse-lite/data/regions/GG.js +0 -1
  1204. package/examples/node_modules/caniuse-lite/data/regions/GH.js +0 -1
  1205. package/examples/node_modules/caniuse-lite/data/regions/GI.js +0 -1
  1206. package/examples/node_modules/caniuse-lite/data/regions/GL.js +0 -1
  1207. package/examples/node_modules/caniuse-lite/data/regions/GM.js +0 -1
  1208. package/examples/node_modules/caniuse-lite/data/regions/GN.js +0 -1
  1209. package/examples/node_modules/caniuse-lite/data/regions/GP.js +0 -1
  1210. package/examples/node_modules/caniuse-lite/data/regions/GQ.js +0 -1
  1211. package/examples/node_modules/caniuse-lite/data/regions/GR.js +0 -1
  1212. package/examples/node_modules/caniuse-lite/data/regions/GT.js +0 -1
  1213. package/examples/node_modules/caniuse-lite/data/regions/GU.js +0 -1
  1214. package/examples/node_modules/caniuse-lite/data/regions/GW.js +0 -1
  1215. package/examples/node_modules/caniuse-lite/data/regions/GY.js +0 -1
  1216. package/examples/node_modules/caniuse-lite/data/regions/HK.js +0 -1
  1217. package/examples/node_modules/caniuse-lite/data/regions/HN.js +0 -1
  1218. package/examples/node_modules/caniuse-lite/data/regions/HR.js +0 -1
  1219. package/examples/node_modules/caniuse-lite/data/regions/HT.js +0 -1
  1220. package/examples/node_modules/caniuse-lite/data/regions/HU.js +0 -1
  1221. package/examples/node_modules/caniuse-lite/data/regions/ID.js +0 -1
  1222. package/examples/node_modules/caniuse-lite/data/regions/IE.js +0 -1
  1223. package/examples/node_modules/caniuse-lite/data/regions/IL.js +0 -1
  1224. package/examples/node_modules/caniuse-lite/data/regions/IM.js +0 -1
  1225. package/examples/node_modules/caniuse-lite/data/regions/IN.js +0 -1
  1226. package/examples/node_modules/caniuse-lite/data/regions/IQ.js +0 -1
  1227. package/examples/node_modules/caniuse-lite/data/regions/IR.js +0 -1
  1228. package/examples/node_modules/caniuse-lite/data/regions/IS.js +0 -1
  1229. package/examples/node_modules/caniuse-lite/data/regions/IT.js +0 -1
  1230. package/examples/node_modules/caniuse-lite/data/regions/JE.js +0 -1
  1231. package/examples/node_modules/caniuse-lite/data/regions/JM.js +0 -1
  1232. package/examples/node_modules/caniuse-lite/data/regions/JO.js +0 -1
  1233. package/examples/node_modules/caniuse-lite/data/regions/JP.js +0 -1
  1234. package/examples/node_modules/caniuse-lite/data/regions/KE.js +0 -1
  1235. package/examples/node_modules/caniuse-lite/data/regions/KG.js +0 -1
  1236. package/examples/node_modules/caniuse-lite/data/regions/KH.js +0 -1
  1237. package/examples/node_modules/caniuse-lite/data/regions/KI.js +0 -1
  1238. package/examples/node_modules/caniuse-lite/data/regions/KM.js +0 -1
  1239. package/examples/node_modules/caniuse-lite/data/regions/KN.js +0 -1
  1240. package/examples/node_modules/caniuse-lite/data/regions/KP.js +0 -1
  1241. package/examples/node_modules/caniuse-lite/data/regions/KR.js +0 -1
  1242. package/examples/node_modules/caniuse-lite/data/regions/KW.js +0 -1
  1243. package/examples/node_modules/caniuse-lite/data/regions/KY.js +0 -1
  1244. package/examples/node_modules/caniuse-lite/data/regions/KZ.js +0 -1
  1245. package/examples/node_modules/caniuse-lite/data/regions/LA.js +0 -1
  1246. package/examples/node_modules/caniuse-lite/data/regions/LB.js +0 -1
  1247. package/examples/node_modules/caniuse-lite/data/regions/LC.js +0 -1
  1248. package/examples/node_modules/caniuse-lite/data/regions/LI.js +0 -1
  1249. package/examples/node_modules/caniuse-lite/data/regions/LK.js +0 -1
  1250. package/examples/node_modules/caniuse-lite/data/regions/LR.js +0 -1
  1251. package/examples/node_modules/caniuse-lite/data/regions/LS.js +0 -1
  1252. package/examples/node_modules/caniuse-lite/data/regions/LT.js +0 -1
  1253. package/examples/node_modules/caniuse-lite/data/regions/LU.js +0 -1
  1254. package/examples/node_modules/caniuse-lite/data/regions/LV.js +0 -1
  1255. package/examples/node_modules/caniuse-lite/data/regions/LY.js +0 -1
  1256. package/examples/node_modules/caniuse-lite/data/regions/MA.js +0 -1
  1257. package/examples/node_modules/caniuse-lite/data/regions/MC.js +0 -1
  1258. package/examples/node_modules/caniuse-lite/data/regions/MD.js +0 -1
  1259. package/examples/node_modules/caniuse-lite/data/regions/ME.js +0 -1
  1260. package/examples/node_modules/caniuse-lite/data/regions/MG.js +0 -1
  1261. package/examples/node_modules/caniuse-lite/data/regions/MH.js +0 -1
  1262. package/examples/node_modules/caniuse-lite/data/regions/MK.js +0 -1
  1263. package/examples/node_modules/caniuse-lite/data/regions/ML.js +0 -1
  1264. package/examples/node_modules/caniuse-lite/data/regions/MM.js +0 -1
  1265. package/examples/node_modules/caniuse-lite/data/regions/MN.js +0 -1
  1266. package/examples/node_modules/caniuse-lite/data/regions/MO.js +0 -1
  1267. package/examples/node_modules/caniuse-lite/data/regions/MP.js +0 -1
  1268. package/examples/node_modules/caniuse-lite/data/regions/MQ.js +0 -1
  1269. package/examples/node_modules/caniuse-lite/data/regions/MR.js +0 -1
  1270. package/examples/node_modules/caniuse-lite/data/regions/MS.js +0 -1
  1271. package/examples/node_modules/caniuse-lite/data/regions/MT.js +0 -1
  1272. package/examples/node_modules/caniuse-lite/data/regions/MU.js +0 -1
  1273. package/examples/node_modules/caniuse-lite/data/regions/MV.js +0 -1
  1274. package/examples/node_modules/caniuse-lite/data/regions/MW.js +0 -1
  1275. package/examples/node_modules/caniuse-lite/data/regions/MX.js +0 -1
  1276. package/examples/node_modules/caniuse-lite/data/regions/MY.js +0 -1
  1277. package/examples/node_modules/caniuse-lite/data/regions/MZ.js +0 -1
  1278. package/examples/node_modules/caniuse-lite/data/regions/NA.js +0 -1
  1279. package/examples/node_modules/caniuse-lite/data/regions/NC.js +0 -1
  1280. package/examples/node_modules/caniuse-lite/data/regions/NE.js +0 -1
  1281. package/examples/node_modules/caniuse-lite/data/regions/NF.js +0 -1
  1282. package/examples/node_modules/caniuse-lite/data/regions/NG.js +0 -1
  1283. package/examples/node_modules/caniuse-lite/data/regions/NI.js +0 -1
  1284. package/examples/node_modules/caniuse-lite/data/regions/NL.js +0 -1
  1285. package/examples/node_modules/caniuse-lite/data/regions/NO.js +0 -1
  1286. package/examples/node_modules/caniuse-lite/data/regions/NP.js +0 -1
  1287. package/examples/node_modules/caniuse-lite/data/regions/NR.js +0 -1
  1288. package/examples/node_modules/caniuse-lite/data/regions/NU.js +0 -1
  1289. package/examples/node_modules/caniuse-lite/data/regions/NZ.js +0 -1
  1290. package/examples/node_modules/caniuse-lite/data/regions/OM.js +0 -1
  1291. package/examples/node_modules/caniuse-lite/data/regions/PA.js +0 -1
  1292. package/examples/node_modules/caniuse-lite/data/regions/PE.js +0 -1
  1293. package/examples/node_modules/caniuse-lite/data/regions/PF.js +0 -1
  1294. package/examples/node_modules/caniuse-lite/data/regions/PG.js +0 -1
  1295. package/examples/node_modules/caniuse-lite/data/regions/PH.js +0 -1
  1296. package/examples/node_modules/caniuse-lite/data/regions/PK.js +0 -1
  1297. package/examples/node_modules/caniuse-lite/data/regions/PL.js +0 -1
  1298. package/examples/node_modules/caniuse-lite/data/regions/PM.js +0 -1
  1299. package/examples/node_modules/caniuse-lite/data/regions/PN.js +0 -1
  1300. package/examples/node_modules/caniuse-lite/data/regions/PR.js +0 -1
  1301. package/examples/node_modules/caniuse-lite/data/regions/PS.js +0 -1
  1302. package/examples/node_modules/caniuse-lite/data/regions/PT.js +0 -1
  1303. package/examples/node_modules/caniuse-lite/data/regions/PW.js +0 -1
  1304. package/examples/node_modules/caniuse-lite/data/regions/PY.js +0 -1
  1305. package/examples/node_modules/caniuse-lite/data/regions/QA.js +0 -1
  1306. package/examples/node_modules/caniuse-lite/data/regions/RE.js +0 -1
  1307. package/examples/node_modules/caniuse-lite/data/regions/RO.js +0 -1
  1308. package/examples/node_modules/caniuse-lite/data/regions/RS.js +0 -1
  1309. package/examples/node_modules/caniuse-lite/data/regions/RU.js +0 -1
  1310. package/examples/node_modules/caniuse-lite/data/regions/RW.js +0 -1
  1311. package/examples/node_modules/caniuse-lite/data/regions/SA.js +0 -1
  1312. package/examples/node_modules/caniuse-lite/data/regions/SB.js +0 -1
  1313. package/examples/node_modules/caniuse-lite/data/regions/SC.js +0 -1
  1314. package/examples/node_modules/caniuse-lite/data/regions/SD.js +0 -1
  1315. package/examples/node_modules/caniuse-lite/data/regions/SE.js +0 -1
  1316. package/examples/node_modules/caniuse-lite/data/regions/SG.js +0 -1
  1317. package/examples/node_modules/caniuse-lite/data/regions/SH.js +0 -1
  1318. package/examples/node_modules/caniuse-lite/data/regions/SI.js +0 -1
  1319. package/examples/node_modules/caniuse-lite/data/regions/SK.js +0 -1
  1320. package/examples/node_modules/caniuse-lite/data/regions/SL.js +0 -1
  1321. package/examples/node_modules/caniuse-lite/data/regions/SM.js +0 -1
  1322. package/examples/node_modules/caniuse-lite/data/regions/SN.js +0 -1
  1323. package/examples/node_modules/caniuse-lite/data/regions/SO.js +0 -1
  1324. package/examples/node_modules/caniuse-lite/data/regions/SR.js +0 -1
  1325. package/examples/node_modules/caniuse-lite/data/regions/ST.js +0 -1
  1326. package/examples/node_modules/caniuse-lite/data/regions/SV.js +0 -1
  1327. package/examples/node_modules/caniuse-lite/data/regions/SY.js +0 -1
  1328. package/examples/node_modules/caniuse-lite/data/regions/SZ.js +0 -1
  1329. package/examples/node_modules/caniuse-lite/data/regions/TC.js +0 -1
  1330. package/examples/node_modules/caniuse-lite/data/regions/TD.js +0 -1
  1331. package/examples/node_modules/caniuse-lite/data/regions/TG.js +0 -1
  1332. package/examples/node_modules/caniuse-lite/data/regions/TH.js +0 -1
  1333. package/examples/node_modules/caniuse-lite/data/regions/TJ.js +0 -1
  1334. package/examples/node_modules/caniuse-lite/data/regions/TK.js +0 -1
  1335. package/examples/node_modules/caniuse-lite/data/regions/TL.js +0 -1
  1336. package/examples/node_modules/caniuse-lite/data/regions/TM.js +0 -1
  1337. package/examples/node_modules/caniuse-lite/data/regions/TN.js +0 -1
  1338. package/examples/node_modules/caniuse-lite/data/regions/TO.js +0 -1
  1339. package/examples/node_modules/caniuse-lite/data/regions/TR.js +0 -1
  1340. package/examples/node_modules/caniuse-lite/data/regions/TT.js +0 -1
  1341. package/examples/node_modules/caniuse-lite/data/regions/TV.js +0 -1
  1342. package/examples/node_modules/caniuse-lite/data/regions/TW.js +0 -1
  1343. package/examples/node_modules/caniuse-lite/data/regions/TZ.js +0 -1
  1344. package/examples/node_modules/caniuse-lite/data/regions/UA.js +0 -1
  1345. package/examples/node_modules/caniuse-lite/data/regions/UG.js +0 -1
  1346. package/examples/node_modules/caniuse-lite/data/regions/US.js +0 -1
  1347. package/examples/node_modules/caniuse-lite/data/regions/UY.js +0 -1
  1348. package/examples/node_modules/caniuse-lite/data/regions/UZ.js +0 -1
  1349. package/examples/node_modules/caniuse-lite/data/regions/VA.js +0 -1
  1350. package/examples/node_modules/caniuse-lite/data/regions/VC.js +0 -1
  1351. package/examples/node_modules/caniuse-lite/data/regions/VE.js +0 -1
  1352. package/examples/node_modules/caniuse-lite/data/regions/VG.js +0 -1
  1353. package/examples/node_modules/caniuse-lite/data/regions/VI.js +0 -1
  1354. package/examples/node_modules/caniuse-lite/data/regions/VN.js +0 -1
  1355. package/examples/node_modules/caniuse-lite/data/regions/VU.js +0 -1
  1356. package/examples/node_modules/caniuse-lite/data/regions/WF.js +0 -1
  1357. package/examples/node_modules/caniuse-lite/data/regions/WS.js +0 -1
  1358. package/examples/node_modules/caniuse-lite/data/regions/YE.js +0 -1
  1359. package/examples/node_modules/caniuse-lite/data/regions/YT.js +0 -1
  1360. package/examples/node_modules/caniuse-lite/data/regions/ZA.js +0 -1
  1361. package/examples/node_modules/caniuse-lite/data/regions/ZM.js +0 -1
  1362. package/examples/node_modules/caniuse-lite/data/regions/ZW.js +0 -1
  1363. package/examples/node_modules/caniuse-lite/data/regions/alt-af.js +0 -1
  1364. package/examples/node_modules/caniuse-lite/data/regions/alt-an.js +0 -1
  1365. package/examples/node_modules/caniuse-lite/data/regions/alt-as.js +0 -1
  1366. package/examples/node_modules/caniuse-lite/data/regions/alt-eu.js +0 -1
  1367. package/examples/node_modules/caniuse-lite/data/regions/alt-na.js +0 -1
  1368. package/examples/node_modules/caniuse-lite/data/regions/alt-oc.js +0 -1
  1369. package/examples/node_modules/caniuse-lite/data/regions/alt-sa.js +0 -1
  1370. package/examples/node_modules/caniuse-lite/data/regions/alt-ww.js +0 -1
  1371. package/examples/node_modules/caniuse-lite/dist/lib/statuses.js +0 -9
  1372. package/examples/node_modules/caniuse-lite/dist/lib/supported.js +0 -9
  1373. package/examples/node_modules/caniuse-lite/dist/unpacker/agents.js +0 -47
  1374. package/examples/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +0 -1
  1375. package/examples/node_modules/caniuse-lite/dist/unpacker/browsers.js +0 -1
  1376. package/examples/node_modules/caniuse-lite/dist/unpacker/feature.js +0 -48
  1377. package/examples/node_modules/caniuse-lite/dist/unpacker/features.js +0 -6
  1378. package/examples/node_modules/caniuse-lite/dist/unpacker/index.js +0 -4
  1379. package/examples/node_modules/caniuse-lite/dist/unpacker/region.js +0 -22
  1380. package/examples/node_modules/caniuse-lite/package.json +0 -34
  1381. package/examples/node_modules/chrome-trace-event/CHANGES.md +0 -26
  1382. package/examples/node_modules/chrome-trace-event/LICENSE.txt +0 -23
  1383. package/examples/node_modules/chrome-trace-event/README.md +0 -31
  1384. package/examples/node_modules/chrome-trace-event/dist/trace-event.d.ts +0 -52
  1385. package/examples/node_modules/chrome-trace-event/dist/trace-event.js +0 -170
  1386. package/examples/node_modules/chrome-trace-event/dist/trace-event.js.map +0 -1
  1387. package/examples/node_modules/chrome-trace-event/package.json +0 -38
  1388. package/examples/node_modules/clone-deep/LICENSE +0 -21
  1389. package/examples/node_modules/clone-deep/README.md +0 -106
  1390. package/examples/node_modules/clone-deep/index.js +0 -49
  1391. package/examples/node_modules/clone-deep/package.json +0 -81
  1392. package/examples/node_modules/colorette/LICENSE.md +0 -7
  1393. package/examples/node_modules/colorette/README.md +0 -134
  1394. package/examples/node_modules/colorette/index.cjs +0 -215
  1395. package/examples/node_modules/colorette/index.d.ts +0 -93
  1396. package/examples/node_modules/colorette/index.js +0 -147
  1397. package/examples/node_modules/colorette/package.json +0 -39
  1398. package/examples/node_modules/commander/CHANGELOG.md +0 -419
  1399. package/examples/node_modules/commander/LICENSE +0 -22
  1400. package/examples/node_modules/commander/Readme.md +0 -428
  1401. package/examples/node_modules/commander/index.js +0 -1224
  1402. package/examples/node_modules/commander/package.json +0 -38
  1403. package/examples/node_modules/commander/typings/index.d.ts +0 -310
  1404. package/examples/node_modules/cross-spawn/CHANGELOG.md +0 -130
  1405. package/examples/node_modules/cross-spawn/LICENSE +0 -21
  1406. package/examples/node_modules/cross-spawn/README.md +0 -96
  1407. package/examples/node_modules/cross-spawn/index.js +0 -39
  1408. package/examples/node_modules/cross-spawn/lib/enoent.js +0 -59
  1409. package/examples/node_modules/cross-spawn/lib/parse.js +0 -91
  1410. package/examples/node_modules/cross-spawn/lib/util/escape.js +0 -45
  1411. package/examples/node_modules/cross-spawn/lib/util/readShebang.js +0 -23
  1412. package/examples/node_modules/cross-spawn/lib/util/resolveCommand.js +0 -52
  1413. package/examples/node_modules/cross-spawn/package.json +0 -73
  1414. package/examples/node_modules/electron-to-chromium/CHANGELOG.md +0 -14
  1415. package/examples/node_modules/electron-to-chromium/LICENSE +0 -5
  1416. package/examples/node_modules/electron-to-chromium/README.md +0 -186
  1417. package/examples/node_modules/electron-to-chromium/chromium-versions.js +0 -45
  1418. package/examples/node_modules/electron-to-chromium/chromium-versions.json +0 -1
  1419. package/examples/node_modules/electron-to-chromium/full-chromium-versions.js +0 -1833
  1420. package/examples/node_modules/electron-to-chromium/full-chromium-versions.json +0 -1
  1421. package/examples/node_modules/electron-to-chromium/full-versions.js +0 -1335
  1422. package/examples/node_modules/electron-to-chromium/full-versions.json +0 -1
  1423. package/examples/node_modules/electron-to-chromium/index.js +0 -36
  1424. package/examples/node_modules/electron-to-chromium/package.json +0 -42
  1425. package/examples/node_modules/electron-to-chromium/versions.js +0 -89
  1426. package/examples/node_modules/electron-to-chromium/versions.json +0 -1
  1427. package/examples/node_modules/enhanced-resolve/LICENSE +0 -20
  1428. package/examples/node_modules/enhanced-resolve/README.md +0 -167
  1429. package/examples/node_modules/enhanced-resolve/lib/AliasFieldPlugin.js +0 -96
  1430. package/examples/node_modules/enhanced-resolve/lib/AliasPlugin.js +0 -120
  1431. package/examples/node_modules/enhanced-resolve/lib/AppendPlugin.js +0 -47
  1432. package/examples/node_modules/enhanced-resolve/lib/CachedInputFileSystem.js +0 -477
  1433. package/examples/node_modules/enhanced-resolve/lib/CloneBasenamePlugin.js +0 -45
  1434. package/examples/node_modules/enhanced-resolve/lib/ConditionalPlugin.js +0 -59
  1435. package/examples/node_modules/enhanced-resolve/lib/DescriptionFilePlugin.js +0 -96
  1436. package/examples/node_modules/enhanced-resolve/lib/DescriptionFileUtils.js +0 -170
  1437. package/examples/node_modules/enhanced-resolve/lib/DirectoryExistsPlugin.js +0 -63
  1438. package/examples/node_modules/enhanced-resolve/lib/ExportsFieldPlugin.js +0 -149
  1439. package/examples/node_modules/enhanced-resolve/lib/FileExistsPlugin.js +0 -58
  1440. package/examples/node_modules/enhanced-resolve/lib/ImportsFieldPlugin.js +0 -171
  1441. package/examples/node_modules/enhanced-resolve/lib/JoinRequestPartPlugin.js +0 -64
  1442. package/examples/node_modules/enhanced-resolve/lib/JoinRequestPlugin.js +0 -41
  1443. package/examples/node_modules/enhanced-resolve/lib/LogInfoPlugin.js +0 -50
  1444. package/examples/node_modules/enhanced-resolve/lib/MainFieldPlugin.js +0 -81
  1445. package/examples/node_modules/enhanced-resolve/lib/ModulesInHierachicDirectoriesPlugin.js +0 -9
  1446. package/examples/node_modules/enhanced-resolve/lib/ModulesInHierarchicalDirectoriesPlugin.js +0 -80
  1447. package/examples/node_modules/enhanced-resolve/lib/ModulesInRootPlugin.js +0 -47
  1448. package/examples/node_modules/enhanced-resolve/lib/NextPlugin.js +0 -33
  1449. package/examples/node_modules/enhanced-resolve/lib/ParsePlugin.js +0 -74
  1450. package/examples/node_modules/enhanced-resolve/lib/PnpPlugin.js +0 -103
  1451. package/examples/node_modules/enhanced-resolve/lib/Resolver.js +0 -500
  1452. package/examples/node_modules/enhanced-resolve/lib/ResolverFactory.js +0 -661
  1453. package/examples/node_modules/enhanced-resolve/lib/RestrictionsPlugin.js +0 -65
  1454. package/examples/node_modules/enhanced-resolve/lib/ResultPlugin.js +0 -42
  1455. package/examples/node_modules/enhanced-resolve/lib/RootsPlugin.js +0 -62
  1456. package/examples/node_modules/enhanced-resolve/lib/SelfReferencePlugin.js +0 -80
  1457. package/examples/node_modules/enhanced-resolve/lib/SymlinkPlugin.js +0 -88
  1458. package/examples/node_modules/enhanced-resolve/lib/SyncAsyncFileSystemDecorator.js +0 -95
  1459. package/examples/node_modules/enhanced-resolve/lib/TryNextPlugin.js +0 -41
  1460. package/examples/node_modules/enhanced-resolve/lib/UnsafeCachePlugin.js +0 -99
  1461. package/examples/node_modules/enhanced-resolve/lib/UseFilePlugin.js +0 -49
  1462. package/examples/node_modules/enhanced-resolve/lib/createInnerContext.js +0 -37
  1463. package/examples/node_modules/enhanced-resolve/lib/forEachBail.js +0 -25
  1464. package/examples/node_modules/enhanced-resolve/lib/getInnerRequest.js +0 -27
  1465. package/examples/node_modules/enhanced-resolve/lib/getPaths.js +0 -37
  1466. package/examples/node_modules/enhanced-resolve/lib/index.js +0 -131
  1467. package/examples/node_modules/enhanced-resolve/lib/util/entrypoints.js +0 -667
  1468. package/examples/node_modules/enhanced-resolve/lib/util/identifier.js +0 -26
  1469. package/examples/node_modules/enhanced-resolve/lib/util/path.js +0 -221
  1470. package/examples/node_modules/enhanced-resolve/lib/util/process-browser.js +0 -16
  1471. package/examples/node_modules/enhanced-resolve/package.json +0 -70
  1472. package/examples/node_modules/enhanced-resolve/types.d.ts +0 -506
  1473. package/examples/node_modules/envinfo/LICENSE +0 -21
  1474. package/examples/node_modules/envinfo/README.md +0 -285
  1475. package/examples/node_modules/envinfo/dist/cli.js +0 -2
  1476. package/examples/node_modules/envinfo/dist/envinfo.js +0 -1
  1477. package/examples/node_modules/envinfo/package.json +0 -96
  1478. package/examples/node_modules/es-module-lexer/LICENSE +0 -10
  1479. package/examples/node_modules/es-module-lexer/README.md +0 -251
  1480. package/examples/node_modules/es-module-lexer/dist/lexer.asm.js +0 -1
  1481. package/examples/node_modules/es-module-lexer/dist/lexer.cjs +0 -1
  1482. package/examples/node_modules/es-module-lexer/dist/lexer.js +0 -2
  1483. package/examples/node_modules/es-module-lexer/lexer.js +0 -899
  1484. package/examples/node_modules/es-module-lexer/package.json +0 -53
  1485. package/examples/node_modules/es-module-lexer/types/lexer.d.ts +0 -86
  1486. package/examples/node_modules/escalade/dist/index.js +0 -22
  1487. package/examples/node_modules/escalade/dist/index.mjs +0 -22
  1488. package/examples/node_modules/escalade/index.d.ts +0 -3
  1489. package/examples/node_modules/escalade/license +0 -9
  1490. package/examples/node_modules/escalade/package.json +0 -61
  1491. package/examples/node_modules/escalade/readme.md +0 -211
  1492. package/examples/node_modules/escalade/sync/index.d.ts +0 -2
  1493. package/examples/node_modules/escalade/sync/index.js +0 -18
  1494. package/examples/node_modules/escalade/sync/index.mjs +0 -18
  1495. package/examples/node_modules/eslint-scope/CHANGELOG.md +0 -70
  1496. package/examples/node_modules/eslint-scope/LICENSE +0 -22
  1497. package/examples/node_modules/eslint-scope/README.md +0 -54
  1498. package/examples/node_modules/eslint-scope/lib/definition.js +0 -86
  1499. package/examples/node_modules/eslint-scope/lib/index.js +0 -165
  1500. package/examples/node_modules/eslint-scope/lib/pattern-visitor.js +0 -152
  1501. package/examples/node_modules/eslint-scope/lib/reference.js +0 -167
  1502. package/examples/node_modules/eslint-scope/lib/referencer.js +0 -629
  1503. package/examples/node_modules/eslint-scope/lib/scope-manager.js +0 -247
  1504. package/examples/node_modules/eslint-scope/lib/scope.js +0 -748
  1505. package/examples/node_modules/eslint-scope/lib/variable.js +0 -88
  1506. package/examples/node_modules/eslint-scope/package.json +0 -48
  1507. package/examples/node_modules/esrecurse/.babelrc +0 -3
  1508. package/examples/node_modules/esrecurse/README.md +0 -171
  1509. package/examples/node_modules/esrecurse/esrecurse.js +0 -117
  1510. package/examples/node_modules/esrecurse/gulpfile.babel.js +0 -92
  1511. package/examples/node_modules/esrecurse/node_modules/estraverse/.jshintrc +0 -16
  1512. package/examples/node_modules/esrecurse/node_modules/estraverse/LICENSE.BSD +0 -19
  1513. package/examples/node_modules/esrecurse/node_modules/estraverse/README.md +0 -153
  1514. package/examples/node_modules/esrecurse/node_modules/estraverse/estraverse.js +0 -805
  1515. package/examples/node_modules/esrecurse/node_modules/estraverse/gulpfile.js +0 -70
  1516. package/examples/node_modules/esrecurse/node_modules/estraverse/package.json +0 -40
  1517. package/examples/node_modules/esrecurse/package.json +0 -52
  1518. package/examples/node_modules/estraverse/.jshintrc +0 -16
  1519. package/examples/node_modules/estraverse/LICENSE.BSD +0 -19
  1520. package/examples/node_modules/estraverse/README.md +0 -153
  1521. package/examples/node_modules/estraverse/estraverse.js +0 -782
  1522. package/examples/node_modules/estraverse/gulpfile.js +0 -70
  1523. package/examples/node_modules/estraverse/package.json +0 -40
  1524. package/examples/node_modules/events/.airtap.yml +0 -15
  1525. package/examples/node_modules/events/.github/FUNDING.yml +0 -12
  1526. package/examples/node_modules/events/.travis.yml +0 -18
  1527. package/examples/node_modules/events/History.md +0 -118
  1528. package/examples/node_modules/events/LICENSE +0 -22
  1529. package/examples/node_modules/events/Readme.md +0 -50
  1530. package/examples/node_modules/events/events.js +0 -497
  1531. package/examples/node_modules/events/package.json +0 -37
  1532. package/examples/node_modules/events/security.md +0 -10
  1533. package/examples/node_modules/events/tests/add-listeners.js +0 -111
  1534. package/examples/node_modules/events/tests/check-listener-leaks.js +0 -101
  1535. package/examples/node_modules/events/tests/common.js +0 -104
  1536. package/examples/node_modules/events/tests/errors.js +0 -13
  1537. package/examples/node_modules/events/tests/events-list.js +0 -28
  1538. package/examples/node_modules/events/tests/events-once.js +0 -234
  1539. package/examples/node_modules/events/tests/index.js +0 -64
  1540. package/examples/node_modules/events/tests/legacy-compat.js +0 -16
  1541. package/examples/node_modules/events/tests/listener-count.js +0 -37
  1542. package/examples/node_modules/events/tests/listeners-side-effects.js +0 -56
  1543. package/examples/node_modules/events/tests/listeners.js +0 -168
  1544. package/examples/node_modules/events/tests/max-listeners.js +0 -47
  1545. package/examples/node_modules/events/tests/method-names.js +0 -35
  1546. package/examples/node_modules/events/tests/modify-in-emit.js +0 -90
  1547. package/examples/node_modules/events/tests/num-args.js +0 -60
  1548. package/examples/node_modules/events/tests/once.js +0 -83
  1549. package/examples/node_modules/events/tests/prepend.js +0 -31
  1550. package/examples/node_modules/events/tests/remove-all-listeners.js +0 -133
  1551. package/examples/node_modules/events/tests/remove-listeners.js +0 -212
  1552. package/examples/node_modules/events/tests/set-max-listeners-side-effects.js +0 -31
  1553. package/examples/node_modules/events/tests/special-event-names.js +0 -45
  1554. package/examples/node_modules/events/tests/subclass.js +0 -66
  1555. package/examples/node_modules/events/tests/symbols.js +0 -25
  1556. package/examples/node_modules/execa/index.d.ts +0 -564
  1557. package/examples/node_modules/execa/index.js +0 -268
  1558. package/examples/node_modules/execa/lib/command.js +0 -52
  1559. package/examples/node_modules/execa/lib/error.js +0 -88
  1560. package/examples/node_modules/execa/lib/kill.js +0 -115
  1561. package/examples/node_modules/execa/lib/promise.js +0 -46
  1562. package/examples/node_modules/execa/lib/stdio.js +0 -52
  1563. package/examples/node_modules/execa/lib/stream.js +0 -97
  1564. package/examples/node_modules/execa/license +0 -9
  1565. package/examples/node_modules/execa/package.json +0 -74
  1566. package/examples/node_modules/execa/readme.md +0 -663
  1567. package/examples/node_modules/fast-deep-equal/LICENSE +0 -21
  1568. package/examples/node_modules/fast-deep-equal/README.md +0 -96
  1569. package/examples/node_modules/fast-deep-equal/es6/index.d.ts +0 -2
  1570. package/examples/node_modules/fast-deep-equal/es6/index.js +0 -72
  1571. package/examples/node_modules/fast-deep-equal/es6/react.d.ts +0 -2
  1572. package/examples/node_modules/fast-deep-equal/es6/react.js +0 -79
  1573. package/examples/node_modules/fast-deep-equal/index.d.ts +0 -4
  1574. package/examples/node_modules/fast-deep-equal/index.js +0 -46
  1575. package/examples/node_modules/fast-deep-equal/package.json +0 -61
  1576. package/examples/node_modules/fast-deep-equal/react.d.ts +0 -2
  1577. package/examples/node_modules/fast-deep-equal/react.js +0 -53
  1578. package/examples/node_modules/fast-json-stable-stringify/.eslintrc.yml +0 -26
  1579. package/examples/node_modules/fast-json-stable-stringify/.github/FUNDING.yml +0 -1
  1580. package/examples/node_modules/fast-json-stable-stringify/.travis.yml +0 -8
  1581. package/examples/node_modules/fast-json-stable-stringify/LICENSE +0 -21
  1582. package/examples/node_modules/fast-json-stable-stringify/README.md +0 -131
  1583. package/examples/node_modules/fast-json-stable-stringify/benchmark/index.js +0 -31
  1584. package/examples/node_modules/fast-json-stable-stringify/benchmark/test.json +0 -137
  1585. package/examples/node_modules/fast-json-stable-stringify/example/key_cmp.js +0 -7
  1586. package/examples/node_modules/fast-json-stable-stringify/example/nested.js +0 -3
  1587. package/examples/node_modules/fast-json-stable-stringify/example/str.js +0 -3
  1588. package/examples/node_modules/fast-json-stable-stringify/example/value_cmp.js +0 -7
  1589. package/examples/node_modules/fast-json-stable-stringify/index.d.ts +0 -4
  1590. package/examples/node_modules/fast-json-stable-stringify/index.js +0 -59
  1591. package/examples/node_modules/fast-json-stable-stringify/package.json +0 -52
  1592. package/examples/node_modules/fast-json-stable-stringify/test/cmp.js +0 -13
  1593. package/examples/node_modules/fast-json-stable-stringify/test/nested.js +0 -44
  1594. package/examples/node_modules/fast-json-stable-stringify/test/str.js +0 -46
  1595. package/examples/node_modules/fast-json-stable-stringify/test/to-json.js +0 -22
  1596. package/examples/node_modules/fastest-levenshtein/.eslintrc.js +0 -27
  1597. package/examples/node_modules/fastest-levenshtein/.prettierrc +0 -4
  1598. package/examples/node_modules/fastest-levenshtein/.travis.yml +0 -17
  1599. package/examples/node_modules/fastest-levenshtein/LICENSE.md +0 -21
  1600. package/examples/node_modules/fastest-levenshtein/README.md +0 -55
  1601. package/examples/node_modules/fastest-levenshtein/index.d.ts +0 -2
  1602. package/examples/node_modules/fastest-levenshtein/index.js +0 -147
  1603. package/examples/node_modules/fastest-levenshtein/package.json +0 -63
  1604. package/examples/node_modules/fastest-levenshtein/test.js +0 -64
  1605. package/examples/node_modules/find-up/index.d.ts +0 -137
  1606. package/examples/node_modules/find-up/index.js +0 -89
  1607. package/examples/node_modules/find-up/license +0 -9
  1608. package/examples/node_modules/find-up/package.json +0 -53
  1609. package/examples/node_modules/find-up/readme.md +0 -156
  1610. package/examples/node_modules/function-bind/.editorconfig +0 -20
  1611. package/examples/node_modules/function-bind/.eslintrc +0 -15
  1612. package/examples/node_modules/function-bind/.jscs.json +0 -176
  1613. package/examples/node_modules/function-bind/.travis.yml +0 -168
  1614. package/examples/node_modules/function-bind/LICENSE +0 -20
  1615. package/examples/node_modules/function-bind/README.md +0 -48
  1616. package/examples/node_modules/function-bind/implementation.js +0 -52
  1617. package/examples/node_modules/function-bind/index.js +0 -5
  1618. package/examples/node_modules/function-bind/package.json +0 -63
  1619. package/examples/node_modules/function-bind/test/.eslintrc +0 -9
  1620. package/examples/node_modules/function-bind/test/index.js +0 -252
  1621. package/examples/node_modules/get-stream/buffer-stream.js +0 -52
  1622. package/examples/node_modules/get-stream/index.d.ts +0 -105
  1623. package/examples/node_modules/get-stream/index.js +0 -61
  1624. package/examples/node_modules/get-stream/license +0 -9
  1625. package/examples/node_modules/get-stream/package.json +0 -47
  1626. package/examples/node_modules/get-stream/readme.md +0 -124
  1627. package/examples/node_modules/glob-to-regexp/.travis.yml +0 -4
  1628. package/examples/node_modules/glob-to-regexp/README.md +0 -75
  1629. package/examples/node_modules/glob-to-regexp/index.js +0 -130
  1630. package/examples/node_modules/glob-to-regexp/package.json +0 -23
  1631. package/examples/node_modules/glob-to-regexp/test.js +0 -235
  1632. package/examples/node_modules/graceful-fs/LICENSE +0 -15
  1633. package/examples/node_modules/graceful-fs/README.md +0 -143
  1634. package/examples/node_modules/graceful-fs/clone.js +0 -23
  1635. package/examples/node_modules/graceful-fs/graceful-fs.js +0 -429
  1636. package/examples/node_modules/graceful-fs/legacy-streams.js +0 -118
  1637. package/examples/node_modules/graceful-fs/package.json +0 -50
  1638. package/examples/node_modules/graceful-fs/polyfills.js +0 -348
  1639. package/examples/node_modules/has/LICENSE-MIT +0 -22
  1640. package/examples/node_modules/has/README.md +0 -18
  1641. package/examples/node_modules/has/package.json +0 -48
  1642. package/examples/node_modules/has/src/index.js +0 -5
  1643. package/examples/node_modules/has/test/index.js +0 -10
  1644. package/examples/node_modules/has-flag/index.d.ts +0 -39
  1645. package/examples/node_modules/has-flag/index.js +0 -8
  1646. package/examples/node_modules/has-flag/license +0 -9
  1647. package/examples/node_modules/has-flag/package.json +0 -46
  1648. package/examples/node_modules/has-flag/readme.md +0 -89
  1649. package/examples/node_modules/human-signals/CHANGELOG.md +0 -11
  1650. package/examples/node_modules/human-signals/LICENSE +0 -201
  1651. package/examples/node_modules/human-signals/README.md +0 -165
  1652. package/examples/node_modules/human-signals/build/src/core.js +0 -273
  1653. package/examples/node_modules/human-signals/build/src/core.js.map +0 -1
  1654. package/examples/node_modules/human-signals/build/src/main.d.ts +0 -52
  1655. package/examples/node_modules/human-signals/build/src/main.js +0 -71
  1656. package/examples/node_modules/human-signals/build/src/main.js.map +0 -1
  1657. package/examples/node_modules/human-signals/build/src/realtime.js +0 -19
  1658. package/examples/node_modules/human-signals/build/src/realtime.js.map +0 -1
  1659. package/examples/node_modules/human-signals/build/src/signals.js +0 -35
  1660. package/examples/node_modules/human-signals/build/src/signals.js.map +0 -1
  1661. package/examples/node_modules/human-signals/package.json +0 -64
  1662. package/examples/node_modules/import-local/fixtures/cli.js +0 -7
  1663. package/examples/node_modules/import-local/index.js +0 -24
  1664. package/examples/node_modules/import-local/license +0 -9
  1665. package/examples/node_modules/import-local/package.json +0 -52
  1666. package/examples/node_modules/import-local/readme.md +0 -37
  1667. package/examples/node_modules/interpret/CHANGELOG +0 -115
  1668. package/examples/node_modules/interpret/LICENSE +0 -22
  1669. package/examples/node_modules/interpret/README.md +0 -229
  1670. package/examples/node_modules/interpret/index.js +0 -211
  1671. package/examples/node_modules/interpret/mjs-stub.js +0 -1
  1672. package/examples/node_modules/interpret/package.json +0 -75
  1673. package/examples/node_modules/is-core-module/.eslintrc +0 -17
  1674. package/examples/node_modules/is-core-module/.nycrc +0 -9
  1675. package/examples/node_modules/is-core-module/CHANGELOG.md +0 -127
  1676. package/examples/node_modules/is-core-module/LICENSE +0 -20
  1677. package/examples/node_modules/is-core-module/README.md +0 -40
  1678. package/examples/node_modules/is-core-module/core.json +0 -152
  1679. package/examples/node_modules/is-core-module/index.js +0 -69
  1680. package/examples/node_modules/is-core-module/package.json +0 -69
  1681. package/examples/node_modules/is-core-module/test/index.js +0 -130
  1682. package/examples/node_modules/is-plain-object/LICENSE +0 -21
  1683. package/examples/node_modules/is-plain-object/README.md +0 -104
  1684. package/examples/node_modules/is-plain-object/index.d.ts +0 -5
  1685. package/examples/node_modules/is-plain-object/index.js +0 -37
  1686. package/examples/node_modules/is-plain-object/package.json +0 -79
  1687. package/examples/node_modules/is-stream/index.d.ts +0 -79
  1688. package/examples/node_modules/is-stream/index.js +0 -28
  1689. package/examples/node_modules/is-stream/license +0 -9
  1690. package/examples/node_modules/is-stream/package.json +0 -42
  1691. package/examples/node_modules/is-stream/readme.md +0 -60
  1692. package/examples/node_modules/isexe/LICENSE +0 -15
  1693. package/examples/node_modules/isexe/README.md +0 -51
  1694. package/examples/node_modules/isexe/index.js +0 -57
  1695. package/examples/node_modules/isexe/mode.js +0 -41
  1696. package/examples/node_modules/isexe/package.json +0 -31
  1697. package/examples/node_modules/isexe/test/basic.js +0 -221
  1698. package/examples/node_modules/isexe/windows.js +0 -42
  1699. package/examples/node_modules/isobject/LICENSE +0 -21
  1700. package/examples/node_modules/isobject/README.md +0 -122
  1701. package/examples/node_modules/isobject/index.d.ts +0 -5
  1702. package/examples/node_modules/isobject/index.js +0 -12
  1703. package/examples/node_modules/isobject/package.json +0 -74
  1704. package/examples/node_modules/jest-worker/LICENSE +0 -21
  1705. package/examples/node_modules/jest-worker/README.md +0 -247
  1706. package/examples/node_modules/jest-worker/build/Farm.d.ts +0 -29
  1707. package/examples/node_modules/jest-worker/build/Farm.js +0 -206
  1708. package/examples/node_modules/jest-worker/build/FifoQueue.d.ts +0 -18
  1709. package/examples/node_modules/jest-worker/build/FifoQueue.js +0 -171
  1710. package/examples/node_modules/jest-worker/build/PriorityQueue.d.ts +0 -41
  1711. package/examples/node_modules/jest-worker/build/PriorityQueue.js +0 -188
  1712. package/examples/node_modules/jest-worker/build/WorkerPool.d.ts +0 -13
  1713. package/examples/node_modules/jest-worker/build/WorkerPool.js +0 -49
  1714. package/examples/node_modules/jest-worker/build/base/BaseWorkerPool.d.ts +0 -21
  1715. package/examples/node_modules/jest-worker/build/base/BaseWorkerPool.js +0 -201
  1716. package/examples/node_modules/jest-worker/build/index.d.ts +0 -49
  1717. package/examples/node_modules/jest-worker/build/index.js +0 -223
  1718. package/examples/node_modules/jest-worker/build/types.d.ts +0 -143
  1719. package/examples/node_modules/jest-worker/build/types.js +0 -39
  1720. package/examples/node_modules/jest-worker/build/workers/ChildProcessWorker.d.ts +0 -51
  1721. package/examples/node_modules/jest-worker/build/workers/ChildProcessWorker.js +0 -333
  1722. package/examples/node_modules/jest-worker/build/workers/NodeThreadsWorker.d.ts +0 -34
  1723. package/examples/node_modules/jest-worker/build/workers/NodeThreadsWorker.js +0 -344
  1724. package/examples/node_modules/jest-worker/build/workers/messageParent.d.ts +0 -8
  1725. package/examples/node_modules/jest-worker/build/workers/messageParent.js +0 -38
  1726. package/examples/node_modules/jest-worker/build/workers/processChild.d.ts +0 -7
  1727. package/examples/node_modules/jest-worker/build/workers/processChild.js +0 -148
  1728. package/examples/node_modules/jest-worker/build/workers/threadChild.d.ts +0 -7
  1729. package/examples/node_modules/jest-worker/build/workers/threadChild.js +0 -159
  1730. package/examples/node_modules/jest-worker/package.json +0 -38
  1731. package/examples/node_modules/json-parse-better-errors/CHANGELOG.md +0 -46
  1732. package/examples/node_modules/json-parse-better-errors/LICENSE.md +0 -7
  1733. package/examples/node_modules/json-parse-better-errors/README.md +0 -46
  1734. package/examples/node_modules/json-parse-better-errors/index.js +0 -38
  1735. package/examples/node_modules/json-parse-better-errors/package.json +0 -45
  1736. package/examples/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
  1737. package/examples/node_modules/json-schema-traverse/.travis.yml +0 -8
  1738. package/examples/node_modules/json-schema-traverse/LICENSE +0 -21
  1739. package/examples/node_modules/json-schema-traverse/README.md +0 -83
  1740. package/examples/node_modules/json-schema-traverse/index.js +0 -89
  1741. package/examples/node_modules/json-schema-traverse/package.json +0 -43
  1742. package/examples/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
  1743. package/examples/node_modules/json-schema-traverse/spec/fixtures/schema.js +0 -125
  1744. package/examples/node_modules/json-schema-traverse/spec/index.spec.js +0 -171
  1745. package/examples/node_modules/kind-of/CHANGELOG.md +0 -160
  1746. package/examples/node_modules/kind-of/LICENSE +0 -21
  1747. package/examples/node_modules/kind-of/README.md +0 -367
  1748. package/examples/node_modules/kind-of/index.js +0 -129
  1749. package/examples/node_modules/kind-of/package.json +0 -88
  1750. package/examples/node_modules/loader-runner/LICENSE +0 -21
  1751. package/examples/node_modules/loader-runner/README.md +0 -53
  1752. package/examples/node_modules/loader-runner/lib/LoaderLoadingError.js +0 -11
  1753. package/examples/node_modules/loader-runner/lib/LoaderRunner.js +0 -415
  1754. package/examples/node_modules/loader-runner/lib/loadLoader.js +0 -54
  1755. package/examples/node_modules/loader-runner/package.json +0 -45
  1756. package/examples/node_modules/locate-path/index.d.ts +0 -83
  1757. package/examples/node_modules/locate-path/index.js +0 -65
  1758. package/examples/node_modules/locate-path/license +0 -9
  1759. package/examples/node_modules/locate-path/package.json +0 -45
  1760. package/examples/node_modules/locate-path/readme.md +0 -122
  1761. package/examples/node_modules/merge-stream/LICENSE +0 -21
  1762. package/examples/node_modules/merge-stream/README.md +0 -78
  1763. package/examples/node_modules/merge-stream/index.js +0 -41
  1764. package/examples/node_modules/merge-stream/package.json +0 -19
  1765. package/examples/node_modules/mime-db/HISTORY.md +0 -507
  1766. package/examples/node_modules/mime-db/LICENSE +0 -23
  1767. package/examples/node_modules/mime-db/README.md +0 -100
  1768. package/examples/node_modules/mime-db/db.json +0 -8519
  1769. package/examples/node_modules/mime-db/index.js +0 -12
  1770. package/examples/node_modules/mime-db/package.json +0 -60
  1771. package/examples/node_modules/mime-types/HISTORY.md +0 -397
  1772. package/examples/node_modules/mime-types/LICENSE +0 -23
  1773. package/examples/node_modules/mime-types/README.md +0 -113
  1774. package/examples/node_modules/mime-types/index.js +0 -188
  1775. package/examples/node_modules/mime-types/package.json +0 -44
  1776. package/examples/node_modules/mimic-fn/index.d.ts +0 -54
  1777. package/examples/node_modules/mimic-fn/index.js +0 -13
  1778. package/examples/node_modules/mimic-fn/license +0 -9
  1779. package/examples/node_modules/mimic-fn/package.json +0 -42
  1780. package/examples/node_modules/mimic-fn/readme.md +0 -69
  1781. package/examples/node_modules/neo-async/LICENSE +0 -22
  1782. package/examples/node_modules/neo-async/README.md +0 -273
  1783. package/examples/node_modules/neo-async/all.js +0 -3
  1784. package/examples/node_modules/neo-async/allLimit.js +0 -3
  1785. package/examples/node_modules/neo-async/allSeries.js +0 -3
  1786. package/examples/node_modules/neo-async/angelFall.js +0 -3
  1787. package/examples/node_modules/neo-async/any.js +0 -3
  1788. package/examples/node_modules/neo-async/anyLimit.js +0 -3
  1789. package/examples/node_modules/neo-async/anySeries.js +0 -3
  1790. package/examples/node_modules/neo-async/apply.js +0 -3
  1791. package/examples/node_modules/neo-async/applyEach.js +0 -3
  1792. package/examples/node_modules/neo-async/applyEachSeries.js +0 -3
  1793. package/examples/node_modules/neo-async/async.js +0 -9184
  1794. package/examples/node_modules/neo-async/async.min.js +0 -80
  1795. package/examples/node_modules/neo-async/asyncify.js +0 -3
  1796. package/examples/node_modules/neo-async/auto.js +0 -3
  1797. package/examples/node_modules/neo-async/autoInject.js +0 -3
  1798. package/examples/node_modules/neo-async/cargo.js +0 -3
  1799. package/examples/node_modules/neo-async/compose.js +0 -3
  1800. package/examples/node_modules/neo-async/concat.js +0 -3
  1801. package/examples/node_modules/neo-async/concatLimit.js +0 -3
  1802. package/examples/node_modules/neo-async/concatSeries.js +0 -3
  1803. package/examples/node_modules/neo-async/constant.js +0 -3
  1804. package/examples/node_modules/neo-async/createLogger.js +0 -3
  1805. package/examples/node_modules/neo-async/detect.js +0 -3
  1806. package/examples/node_modules/neo-async/detectLimit.js +0 -3
  1807. package/examples/node_modules/neo-async/detectSeries.js +0 -3
  1808. package/examples/node_modules/neo-async/dir.js +0 -3
  1809. package/examples/node_modules/neo-async/doDuring.js +0 -3
  1810. package/examples/node_modules/neo-async/doUntil.js +0 -3
  1811. package/examples/node_modules/neo-async/doWhilst.js +0 -3
  1812. package/examples/node_modules/neo-async/during.js +0 -3
  1813. package/examples/node_modules/neo-async/each.js +0 -3
  1814. package/examples/node_modules/neo-async/eachLimit.js +0 -3
  1815. package/examples/node_modules/neo-async/eachOf.js +0 -3
  1816. package/examples/node_modules/neo-async/eachOfLimit.js +0 -3
  1817. package/examples/node_modules/neo-async/eachOfSeries.js +0 -3
  1818. package/examples/node_modules/neo-async/eachSeries.js +0 -3
  1819. package/examples/node_modules/neo-async/ensureAsync.js +0 -3
  1820. package/examples/node_modules/neo-async/every.js +0 -3
  1821. package/examples/node_modules/neo-async/everyLimit.js +0 -3
  1822. package/examples/node_modules/neo-async/everySeries.js +0 -3
  1823. package/examples/node_modules/neo-async/fast.js +0 -3
  1824. package/examples/node_modules/neo-async/filter.js +0 -3
  1825. package/examples/node_modules/neo-async/filterLimit.js +0 -3
  1826. package/examples/node_modules/neo-async/filterSeries.js +0 -3
  1827. package/examples/node_modules/neo-async/find.js +0 -3
  1828. package/examples/node_modules/neo-async/findLimit.js +0 -3
  1829. package/examples/node_modules/neo-async/findSeries.js +0 -3
  1830. package/examples/node_modules/neo-async/foldl.js +0 -3
  1831. package/examples/node_modules/neo-async/foldr.js +0 -3
  1832. package/examples/node_modules/neo-async/forEach.js +0 -3
  1833. package/examples/node_modules/neo-async/forEachLimit.js +0 -3
  1834. package/examples/node_modules/neo-async/forEachOf.js +0 -3
  1835. package/examples/node_modules/neo-async/forEachOfLimit.js +0 -3
  1836. package/examples/node_modules/neo-async/forEachOfSeries.js +0 -3
  1837. package/examples/node_modules/neo-async/forEachSeries.js +0 -3
  1838. package/examples/node_modules/neo-async/forever.js +0 -3
  1839. package/examples/node_modules/neo-async/groupBy.js +0 -3
  1840. package/examples/node_modules/neo-async/groupByLimit.js +0 -3
  1841. package/examples/node_modules/neo-async/groupBySeries.js +0 -3
  1842. package/examples/node_modules/neo-async/inject.js +0 -3
  1843. package/examples/node_modules/neo-async/iterator.js +0 -3
  1844. package/examples/node_modules/neo-async/log.js +0 -3
  1845. package/examples/node_modules/neo-async/map.js +0 -3
  1846. package/examples/node_modules/neo-async/mapLimit.js +0 -3
  1847. package/examples/node_modules/neo-async/mapSeries.js +0 -3
  1848. package/examples/node_modules/neo-async/mapValues.js +0 -3
  1849. package/examples/node_modules/neo-async/mapValuesLimit.js +0 -3
  1850. package/examples/node_modules/neo-async/mapValuesSeries.js +0 -3
  1851. package/examples/node_modules/neo-async/memoize.js +0 -3
  1852. package/examples/node_modules/neo-async/nextTick.js +0 -3
  1853. package/examples/node_modules/neo-async/omit.js +0 -3
  1854. package/examples/node_modules/neo-async/omitLimit.js +0 -3
  1855. package/examples/node_modules/neo-async/omitSeries.js +0 -3
  1856. package/examples/node_modules/neo-async/package.json +0 -57
  1857. package/examples/node_modules/neo-async/parallel.js +0 -3
  1858. package/examples/node_modules/neo-async/parallelLimit.js +0 -3
  1859. package/examples/node_modules/neo-async/pick.js +0 -3
  1860. package/examples/node_modules/neo-async/pickLimit.js +0 -3
  1861. package/examples/node_modules/neo-async/pickSeries.js +0 -3
  1862. package/examples/node_modules/neo-async/priorityQueue.js +0 -3
  1863. package/examples/node_modules/neo-async/queue.js +0 -3
  1864. package/examples/node_modules/neo-async/race.js +0 -3
  1865. package/examples/node_modules/neo-async/reduce.js +0 -3
  1866. package/examples/node_modules/neo-async/reduceRight.js +0 -3
  1867. package/examples/node_modules/neo-async/reflect.js +0 -3
  1868. package/examples/node_modules/neo-async/reflectAll.js +0 -3
  1869. package/examples/node_modules/neo-async/reject.js +0 -3
  1870. package/examples/node_modules/neo-async/rejectLimit.js +0 -3
  1871. package/examples/node_modules/neo-async/rejectSeries.js +0 -3
  1872. package/examples/node_modules/neo-async/retry.js +0 -3
  1873. package/examples/node_modules/neo-async/retryable.js +0 -3
  1874. package/examples/node_modules/neo-async/safe.js +0 -3
  1875. package/examples/node_modules/neo-async/select.js +0 -3
  1876. package/examples/node_modules/neo-async/selectLimit.js +0 -3
  1877. package/examples/node_modules/neo-async/selectSeries.js +0 -3
  1878. package/examples/node_modules/neo-async/seq.js +0 -3
  1879. package/examples/node_modules/neo-async/series.js +0 -3
  1880. package/examples/node_modules/neo-async/setImmediate.js +0 -3
  1881. package/examples/node_modules/neo-async/some.js +0 -3
  1882. package/examples/node_modules/neo-async/someLimit.js +0 -3
  1883. package/examples/node_modules/neo-async/someSeries.js +0 -3
  1884. package/examples/node_modules/neo-async/sortBy.js +0 -3
  1885. package/examples/node_modules/neo-async/sortByLimit.js +0 -3
  1886. package/examples/node_modules/neo-async/sortBySeries.js +0 -3
  1887. package/examples/node_modules/neo-async/timeout.js +0 -3
  1888. package/examples/node_modules/neo-async/times.js +0 -3
  1889. package/examples/node_modules/neo-async/timesLimit.js +0 -3
  1890. package/examples/node_modules/neo-async/timesSeries.js +0 -3
  1891. package/examples/node_modules/neo-async/transform.js +0 -3
  1892. package/examples/node_modules/neo-async/transformLimit.js +0 -3
  1893. package/examples/node_modules/neo-async/transformSeries.js +0 -3
  1894. package/examples/node_modules/neo-async/tryEach.js +0 -3
  1895. package/examples/node_modules/neo-async/unmemoize.js +0 -3
  1896. package/examples/node_modules/neo-async/until.js +0 -3
  1897. package/examples/node_modules/neo-async/waterfall.js +0 -3
  1898. package/examples/node_modules/neo-async/whilst.js +0 -3
  1899. package/examples/node_modules/neo-async/wrapSync.js +0 -3
  1900. package/examples/node_modules/node-releases/LICENSE +0 -21
  1901. package/examples/node_modules/node-releases/README.md +0 -31
  1902. package/examples/node_modules/node-releases/data/processed/envs.json +0 -1
  1903. package/examples/node_modules/node-releases/data/release-schedule/release-schedule.json +0 -1
  1904. package/examples/node_modules/node-releases/package.json +0 -18
  1905. package/examples/node_modules/npm-run-path/index.d.ts +0 -89
  1906. package/examples/node_modules/npm-run-path/index.js +0 -47
  1907. package/examples/node_modules/npm-run-path/license +0 -9
  1908. package/examples/node_modules/npm-run-path/package.json +0 -44
  1909. package/examples/node_modules/npm-run-path/readme.md +0 -115
  1910. package/examples/node_modules/onetime/index.d.ts +0 -64
  1911. package/examples/node_modules/onetime/index.js +0 -44
  1912. package/examples/node_modules/onetime/license +0 -9
  1913. package/examples/node_modules/onetime/package.json +0 -43
  1914. package/examples/node_modules/onetime/readme.md +0 -94
  1915. package/examples/node_modules/p-limit/index.d.ts +0 -38
  1916. package/examples/node_modules/p-limit/index.js +0 -57
  1917. package/examples/node_modules/p-limit/license +0 -9
  1918. package/examples/node_modules/p-limit/package.json +0 -52
  1919. package/examples/node_modules/p-limit/readme.md +0 -101
  1920. package/examples/node_modules/p-locate/index.d.ts +0 -64
  1921. package/examples/node_modules/p-locate/index.js +0 -52
  1922. package/examples/node_modules/p-locate/license +0 -9
  1923. package/examples/node_modules/p-locate/package.json +0 -53
  1924. package/examples/node_modules/p-locate/readme.md +0 -90
  1925. package/examples/node_modules/p-try/index.d.ts +0 -39
  1926. package/examples/node_modules/p-try/index.js +0 -9
  1927. package/examples/node_modules/p-try/license +0 -9
  1928. package/examples/node_modules/p-try/package.json +0 -42
  1929. package/examples/node_modules/p-try/readme.md +0 -58
  1930. package/examples/node_modules/path-exists/index.d.ts +0 -28
  1931. package/examples/node_modules/path-exists/index.js +0 -23
  1932. package/examples/node_modules/path-exists/license +0 -9
  1933. package/examples/node_modules/path-exists/package.json +0 -39
  1934. package/examples/node_modules/path-exists/readme.md +0 -52
  1935. package/examples/node_modules/path-key/index.d.ts +0 -40
  1936. package/examples/node_modules/path-key/index.js +0 -16
  1937. package/examples/node_modules/path-key/license +0 -9
  1938. package/examples/node_modules/path-key/package.json +0 -39
  1939. package/examples/node_modules/path-key/readme.md +0 -61
  1940. package/examples/node_modules/path-parse/LICENSE +0 -21
  1941. package/examples/node_modules/path-parse/README.md +0 -42
  1942. package/examples/node_modules/path-parse/index.js +0 -75
  1943. package/examples/node_modules/path-parse/package.json +0 -33
  1944. package/examples/node_modules/picocolors/LICENSE +0 -15
  1945. package/examples/node_modules/picocolors/README.md +0 -21
  1946. package/examples/node_modules/picocolors/package.json +0 -25
  1947. package/examples/node_modules/picocolors/picocolors.browser.js +0 -4
  1948. package/examples/node_modules/picocolors/picocolors.d.ts +0 -5
  1949. package/examples/node_modules/picocolors/picocolors.js +0 -58
  1950. package/examples/node_modules/picocolors/types.ts +0 -30
  1951. package/examples/node_modules/pkg-dir/index.d.ts +0 -44
  1952. package/examples/node_modules/pkg-dir/index.js +0 -17
  1953. package/examples/node_modules/pkg-dir/license +0 -9
  1954. package/examples/node_modules/pkg-dir/package.json +0 -56
  1955. package/examples/node_modules/pkg-dir/readme.md +0 -66
  1956. package/examples/node_modules/punycode/LICENSE-MIT.txt +0 -20
  1957. package/examples/node_modules/punycode/README.md +0 -122
  1958. package/examples/node_modules/punycode/package.json +0 -58
  1959. package/examples/node_modules/punycode/punycode.es6.js +0 -441
  1960. package/examples/node_modules/punycode/punycode.js +0 -440
  1961. package/examples/node_modules/randombytes/.travis.yml +0 -15
  1962. package/examples/node_modules/randombytes/.zuul.yml +0 -1
  1963. package/examples/node_modules/randombytes/LICENSE +0 -21
  1964. package/examples/node_modules/randombytes/README.md +0 -14
  1965. package/examples/node_modules/randombytes/browser.js +0 -50
  1966. package/examples/node_modules/randombytes/index.js +0 -1
  1967. package/examples/node_modules/randombytes/package.json +0 -36
  1968. package/examples/node_modules/randombytes/test.js +0 -81
  1969. package/examples/node_modules/rechoir/LICENSE +0 -24
  1970. package/examples/node_modules/rechoir/README.md +0 -83
  1971. package/examples/node_modules/rechoir/index.js +0 -67
  1972. package/examples/node_modules/rechoir/lib/extension.js +0 -44
  1973. package/examples/node_modules/rechoir/lib/normalize.js +0 -13
  1974. package/examples/node_modules/rechoir/lib/register.js +0 -15
  1975. package/examples/node_modules/rechoir/package.json +0 -46
  1976. package/examples/node_modules/resolve/.editorconfig +0 -37
  1977. package/examples/node_modules/resolve/.eslintrc +0 -65
  1978. package/examples/node_modules/resolve/.github/FUNDING.yml +0 -12
  1979. package/examples/node_modules/resolve/LICENSE +0 -21
  1980. package/examples/node_modules/resolve/SECURITY.md +0 -3
  1981. package/examples/node_modules/resolve/appveyor.yml +0 -76
  1982. package/examples/node_modules/resolve/async.js +0 -3
  1983. package/examples/node_modules/resolve/bin/resolve +0 -50
  1984. package/examples/node_modules/resolve/example/async.js +0 -5
  1985. package/examples/node_modules/resolve/example/sync.js +0 -3
  1986. package/examples/node_modules/resolve/index.js +0 -6
  1987. package/examples/node_modules/resolve/lib/async.js +0 -329
  1988. package/examples/node_modules/resolve/lib/caller.js +0 -8
  1989. package/examples/node_modules/resolve/lib/core.js +0 -52
  1990. package/examples/node_modules/resolve/lib/core.json +0 -152
  1991. package/examples/node_modules/resolve/lib/homedir.js +0 -24
  1992. package/examples/node_modules/resolve/lib/is-core.js +0 -5
  1993. package/examples/node_modules/resolve/lib/node-modules-paths.js +0 -42
  1994. package/examples/node_modules/resolve/lib/normalize-options.js +0 -10
  1995. package/examples/node_modules/resolve/lib/sync.js +0 -208
  1996. package/examples/node_modules/resolve/package.json +0 -62
  1997. package/examples/node_modules/resolve/readme.markdown +0 -301
  1998. package/examples/node_modules/resolve/sync.js +0 -3
  1999. package/examples/node_modules/resolve/test/core.js +0 -81
  2000. package/examples/node_modules/resolve/test/dotdot/abc/index.js +0 -2
  2001. package/examples/node_modules/resolve/test/dotdot/index.js +0 -1
  2002. package/examples/node_modules/resolve/test/dotdot.js +0 -29
  2003. package/examples/node_modules/resolve/test/faulty_basedir.js +0 -29
  2004. package/examples/node_modules/resolve/test/filter.js +0 -34
  2005. package/examples/node_modules/resolve/test/filter_sync.js +0 -33
  2006. package/examples/node_modules/resolve/test/home_paths.js +0 -127
  2007. package/examples/node_modules/resolve/test/home_paths_sync.js +0 -114
  2008. package/examples/node_modules/resolve/test/mock.js +0 -315
  2009. package/examples/node_modules/resolve/test/mock_sync.js +0 -214
  2010. package/examples/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +0 -1
  2011. package/examples/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +0 -1
  2012. package/examples/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +0 -1
  2013. package/examples/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +0 -3
  2014. package/examples/node_modules/resolve/test/module_dir.js +0 -56
  2015. package/examples/node_modules/resolve/test/node-modules-paths.js +0 -143
  2016. package/examples/node_modules/resolve/test/node_path/x/aaa/index.js +0 -1
  2017. package/examples/node_modules/resolve/test/node_path/x/ccc/index.js +0 -1
  2018. package/examples/node_modules/resolve/test/node_path/y/bbb/index.js +0 -1
  2019. package/examples/node_modules/resolve/test/node_path/y/ccc/index.js +0 -1
  2020. package/examples/node_modules/resolve/test/node_path.js +0 -70
  2021. package/examples/node_modules/resolve/test/nonstring.js +0 -9
  2022. package/examples/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  2023. package/examples/node_modules/resolve/test/pathfilter.js +0 -75
  2024. package/examples/node_modules/resolve/test/precedence/aaa/index.js +0 -1
  2025. package/examples/node_modules/resolve/test/precedence/aaa/main.js +0 -1
  2026. package/examples/node_modules/resolve/test/precedence/aaa.js +0 -1
  2027. package/examples/node_modules/resolve/test/precedence/bbb/main.js +0 -1
  2028. package/examples/node_modules/resolve/test/precedence/bbb.js +0 -1
  2029. package/examples/node_modules/resolve/test/precedence.js +0 -23
  2030. package/examples/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  2031. package/examples/node_modules/resolve/test/resolver/baz/package.json +0 -4
  2032. package/examples/node_modules/resolve/test/resolver/baz/quux.js +0 -1
  2033. package/examples/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
  2034. package/examples/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
  2035. package/examples/node_modules/resolve/test/resolver/browser_field/package.json +0 -5
  2036. package/examples/node_modules/resolve/test/resolver/cup.coffee +0 -1
  2037. package/examples/node_modules/resolve/test/resolver/dot_main/index.js +0 -1
  2038. package/examples/node_modules/resolve/test/resolver/dot_main/package.json +0 -3
  2039. package/examples/node_modules/resolve/test/resolver/dot_slash_main/index.js +0 -1
  2040. package/examples/node_modules/resolve/test/resolver/dot_slash_main/package.json +0 -3
  2041. package/examples/node_modules/resolve/test/resolver/foo.js +0 -1
  2042. package/examples/node_modules/resolve/test/resolver/incorrect_main/index.js +0 -2
  2043. package/examples/node_modules/resolve/test/resolver/incorrect_main/package.json +0 -3
  2044. package/examples/node_modules/resolve/test/resolver/invalid_main/package.json +0 -7
  2045. package/examples/node_modules/resolve/test/resolver/malformed_package_json/index.js +0 -0
  2046. package/examples/node_modules/resolve/test/resolver/malformed_package_json/package.json +0 -1
  2047. package/examples/node_modules/resolve/test/resolver/mug.coffee +0 -0
  2048. package/examples/node_modules/resolve/test/resolver/mug.js +0 -0
  2049. package/examples/node_modules/resolve/test/resolver/multirepo/lerna.json +0 -6
  2050. package/examples/node_modules/resolve/test/resolver/multirepo/package.json +0 -20
  2051. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +0 -35
  2052. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +0 -14
  2053. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
  2054. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +0 -14
  2055. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +0 -26
  2056. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +0 -15
  2057. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +0 -12
  2058. package/examples/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  2059. package/examples/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  2060. package/examples/node_modules/resolve/test/resolver/quux/foo/index.js +0 -1
  2061. package/examples/node_modules/resolve/test/resolver/same_names/foo/index.js +0 -1
  2062. package/examples/node_modules/resolve/test/resolver/same_names/foo.js +0 -1
  2063. package/examples/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  2064. package/examples/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
  2065. package/examples/node_modules/resolve/test/resolver/symlinked/package/bar.js +0 -1
  2066. package/examples/node_modules/resolve/test/resolver/symlinked/package/package.json +0 -3
  2067. package/examples/node_modules/resolve/test/resolver/without_basedir/main.js +0 -5
  2068. package/examples/node_modules/resolve/test/resolver.js +0 -546
  2069. package/examples/node_modules/resolve/test/resolver_sync.js +0 -645
  2070. package/examples/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
  2071. package/examples/node_modules/resolve/test/shadowed_core.js +0 -54
  2072. package/examples/node_modules/resolve/test/subdirs.js +0 -13
  2073. package/examples/node_modules/resolve/test/symlinks.js +0 -176
  2074. package/examples/node_modules/resolve-cwd/index.d.ts +0 -48
  2075. package/examples/node_modules/resolve-cwd/index.js +0 -5
  2076. package/examples/node_modules/resolve-cwd/license +0 -9
  2077. package/examples/node_modules/resolve-cwd/package.json +0 -43
  2078. package/examples/node_modules/resolve-cwd/readme.md +0 -58
  2079. package/examples/node_modules/resolve-from/index.d.ts +0 -31
  2080. package/examples/node_modules/resolve-from/index.js +0 -47
  2081. package/examples/node_modules/resolve-from/license +0 -9
  2082. package/examples/node_modules/resolve-from/package.json +0 -36
  2083. package/examples/node_modules/resolve-from/readme.md +0 -72
  2084. package/examples/node_modules/safe-buffer/LICENSE +0 -21
  2085. package/examples/node_modules/safe-buffer/README.md +0 -584
  2086. package/examples/node_modules/safe-buffer/index.d.ts +0 -187
  2087. package/examples/node_modules/safe-buffer/index.js +0 -65
  2088. package/examples/node_modules/safe-buffer/package.json +0 -51
  2089. package/examples/node_modules/schema-utils/LICENSE +0 -20
  2090. package/examples/node_modules/schema-utils/README.md +0 -290
  2091. package/examples/node_modules/schema-utils/declarations/ValidationError.d.ts +0 -74
  2092. package/examples/node_modules/schema-utils/declarations/index.d.ts +0 -3
  2093. package/examples/node_modules/schema-utils/declarations/keywords/absolutePath.d.ts +0 -10
  2094. package/examples/node_modules/schema-utils/declarations/util/Range.d.ts +0 -79
  2095. package/examples/node_modules/schema-utils/declarations/util/hints.d.ts +0 -3
  2096. package/examples/node_modules/schema-utils/declarations/validate.d.ts +0 -37
  2097. package/examples/node_modules/schema-utils/dist/ValidationError.js +0 -1271
  2098. package/examples/node_modules/schema-utils/dist/index.js +0 -11
  2099. package/examples/node_modules/schema-utils/dist/keywords/absolutePath.js +0 -93
  2100. package/examples/node_modules/schema-utils/dist/util/Range.js +0 -163
  2101. package/examples/node_modules/schema-utils/dist/util/hints.js +0 -105
  2102. package/examples/node_modules/schema-utils/dist/validate.js +0 -163
  2103. package/examples/node_modules/schema-utils/package.json +0 -78
  2104. package/examples/node_modules/serialize-javascript/LICENSE +0 -27
  2105. package/examples/node_modules/serialize-javascript/README.md +0 -142
  2106. package/examples/node_modules/serialize-javascript/index.js +0 -268
  2107. package/examples/node_modules/serialize-javascript/package.json +0 -36
  2108. package/examples/node_modules/shallow-clone/LICENSE +0 -21
  2109. package/examples/node_modules/shallow-clone/README.md +0 -153
  2110. package/examples/node_modules/shallow-clone/index.js +0 -83
  2111. package/examples/node_modules/shallow-clone/package.json +0 -64
  2112. package/examples/node_modules/shebang-command/index.js +0 -19
  2113. package/examples/node_modules/shebang-command/license +0 -9
  2114. package/examples/node_modules/shebang-command/package.json +0 -34
  2115. package/examples/node_modules/shebang-command/readme.md +0 -34
  2116. package/examples/node_modules/shebang-regex/index.d.ts +0 -22
  2117. package/examples/node_modules/shebang-regex/index.js +0 -2
  2118. package/examples/node_modules/shebang-regex/license +0 -9
  2119. package/examples/node_modules/shebang-regex/package.json +0 -35
  2120. package/examples/node_modules/shebang-regex/readme.md +0 -33
  2121. package/examples/node_modules/signal-exit/LICENSE.txt +0 -16
  2122. package/examples/node_modules/signal-exit/README.md +0 -39
  2123. package/examples/node_modules/signal-exit/index.js +0 -202
  2124. package/examples/node_modules/signal-exit/package.json +0 -38
  2125. package/examples/node_modules/signal-exit/signals.js +0 -53
  2126. package/examples/node_modules/source-map/CHANGELOG.md +0 -301
  2127. package/examples/node_modules/source-map/LICENSE +0 -28
  2128. package/examples/node_modules/source-map/README.md +0 -742
  2129. package/examples/node_modules/source-map/dist/source-map.debug.js +0 -3234
  2130. package/examples/node_modules/source-map/dist/source-map.js +0 -3233
  2131. package/examples/node_modules/source-map/dist/source-map.min.js +0 -2
  2132. package/examples/node_modules/source-map/dist/source-map.min.js.map +0 -1
  2133. package/examples/node_modules/source-map/lib/array-set.js +0 -121
  2134. package/examples/node_modules/source-map/lib/base64-vlq.js +0 -140
  2135. package/examples/node_modules/source-map/lib/base64.js +0 -67
  2136. package/examples/node_modules/source-map/lib/binary-search.js +0 -111
  2137. package/examples/node_modules/source-map/lib/mapping-list.js +0 -79
  2138. package/examples/node_modules/source-map/lib/quick-sort.js +0 -114
  2139. package/examples/node_modules/source-map/lib/source-map-consumer.js +0 -1145
  2140. package/examples/node_modules/source-map/lib/source-map-generator.js +0 -425
  2141. package/examples/node_modules/source-map/lib/source-node.js +0 -413
  2142. package/examples/node_modules/source-map/lib/util.js +0 -488
  2143. package/examples/node_modules/source-map/package.json +0 -73
  2144. package/examples/node_modules/source-map/source-map.d.ts +0 -98
  2145. package/examples/node_modules/source-map/source-map.js +0 -8
  2146. package/examples/node_modules/source-map-support/LICENSE.md +0 -21
  2147. package/examples/node_modules/source-map-support/README.md +0 -284
  2148. package/examples/node_modules/source-map-support/browser-source-map-support.js +0 -114
  2149. package/examples/node_modules/source-map-support/package.json +0 -31
  2150. package/examples/node_modules/source-map-support/register-hook-require.js +0 -1
  2151. package/examples/node_modules/source-map-support/register.js +0 -1
  2152. package/examples/node_modules/source-map-support/source-map-support.js +0 -625
  2153. package/examples/node_modules/strip-final-newline/index.js +0 -16
  2154. package/examples/node_modules/strip-final-newline/license +0 -9
  2155. package/examples/node_modules/strip-final-newline/package.json +0 -40
  2156. package/examples/node_modules/strip-final-newline/readme.md +0 -30
  2157. package/examples/node_modules/supports-color/browser.js +0 -24
  2158. package/examples/node_modules/supports-color/index.js +0 -152
  2159. package/examples/node_modules/supports-color/license +0 -9
  2160. package/examples/node_modules/supports-color/package.json +0 -58
  2161. package/examples/node_modules/supports-color/readme.md +0 -77
  2162. package/examples/node_modules/supports-preserve-symlinks-flag/.eslintrc +0 -14
  2163. package/examples/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +0 -12
  2164. package/examples/node_modules/supports-preserve-symlinks-flag/.nycrc +0 -9
  2165. package/examples/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +0 -22
  2166. package/examples/node_modules/supports-preserve-symlinks-flag/LICENSE +0 -21
  2167. package/examples/node_modules/supports-preserve-symlinks-flag/README.md +0 -42
  2168. package/examples/node_modules/supports-preserve-symlinks-flag/browser.js +0 -3
  2169. package/examples/node_modules/supports-preserve-symlinks-flag/index.js +0 -9
  2170. package/examples/node_modules/supports-preserve-symlinks-flag/package.json +0 -70
  2171. package/examples/node_modules/supports-preserve-symlinks-flag/test/index.js +0 -29
  2172. package/examples/node_modules/tapable/LICENSE +0 -21
  2173. package/examples/node_modules/tapable/README.md +0 -296
  2174. package/examples/node_modules/tapable/lib/AsyncParallelBailHook.js +0 -85
  2175. package/examples/node_modules/tapable/lib/AsyncParallelHook.js +0 -37
  2176. package/examples/node_modules/tapable/lib/AsyncSeriesBailHook.js +0 -42
  2177. package/examples/node_modules/tapable/lib/AsyncSeriesHook.js +0 -37
  2178. package/examples/node_modules/tapable/lib/AsyncSeriesLoopHook.js +0 -37
  2179. package/examples/node_modules/tapable/lib/AsyncSeriesWaterfallHook.js +0 -47
  2180. package/examples/node_modules/tapable/lib/Hook.js +0 -175
  2181. package/examples/node_modules/tapable/lib/HookCodeFactory.js +0 -468
  2182. package/examples/node_modules/tapable/lib/HookMap.js +0 -61
  2183. package/examples/node_modules/tapable/lib/MultiHook.js +0 -54
  2184. package/examples/node_modules/tapable/lib/SyncBailHook.js +0 -51
  2185. package/examples/node_modules/tapable/lib/SyncHook.js +0 -46
  2186. package/examples/node_modules/tapable/lib/SyncLoopHook.js +0 -46
  2187. package/examples/node_modules/tapable/lib/SyncWaterfallHook.js +0 -57
  2188. package/examples/node_modules/tapable/lib/index.js +0 -19
  2189. package/examples/node_modules/tapable/lib/util-browser.js +0 -16
  2190. package/examples/node_modules/tapable/package.json +0 -44
  2191. package/examples/node_modules/tapable/tapable.d.ts +0 -116
  2192. package/examples/node_modules/terser/CHANGELOG.md +0 -480
  2193. package/examples/node_modules/terser/LICENSE +0 -29
  2194. package/examples/node_modules/terser/PATRONS.md +0 -15
  2195. package/examples/node_modules/terser/README.md +0 -1374
  2196. package/examples/node_modules/terser/bin/package.json +0 -10
  2197. package/examples/node_modules/terser/bin/terser +0 -21
  2198. package/examples/node_modules/terser/bin/uglifyjs +0 -10
  2199. package/examples/node_modules/terser/dist/.gitkeep +0 -0
  2200. package/examples/node_modules/terser/dist/bundle.min.js +0 -28332
  2201. package/examples/node_modules/terser/dist/package.json +0 -10
  2202. package/examples/node_modules/terser/lib/ast.js +0 -1858
  2203. package/examples/node_modules/terser/lib/cli.js +0 -479
  2204. package/examples/node_modules/terser/lib/compress/common.js +0 -296
  2205. package/examples/node_modules/terser/lib/compress/compressor-flags.js +0 -63
  2206. package/examples/node_modules/terser/lib/compress/drop-side-effect-free.js +0 -350
  2207. package/examples/node_modules/terser/lib/compress/evaluate.js +0 -461
  2208. package/examples/node_modules/terser/lib/compress/index.js +0 -4667
  2209. package/examples/node_modules/terser/lib/compress/inference.js +0 -948
  2210. package/examples/node_modules/terser/lib/compress/native-objects.js +0 -184
  2211. package/examples/node_modules/terser/lib/compress/reduce-vars.js +0 -675
  2212. package/examples/node_modules/terser/lib/compress/tighten-body.js +0 -1461
  2213. package/examples/node_modules/terser/lib/equivalent-to.js +0 -313
  2214. package/examples/node_modules/terser/lib/minify.js +0 -335
  2215. package/examples/node_modules/terser/lib/mozilla-ast.js +0 -1376
  2216. package/examples/node_modules/terser/lib/output.js +0 -2347
  2217. package/examples/node_modules/terser/lib/parse.js +0 -3362
  2218. package/examples/node_modules/terser/lib/propmangle.js +0 -376
  2219. package/examples/node_modules/terser/lib/scope.js +0 -1042
  2220. package/examples/node_modules/terser/lib/size.js +0 -490
  2221. package/examples/node_modules/terser/lib/sourcemap.js +0 -114
  2222. package/examples/node_modules/terser/lib/transform.js +0 -318
  2223. package/examples/node_modules/terser/lib/utils/first_in_statement.js +0 -50
  2224. package/examples/node_modules/terser/lib/utils/index.js +0 -302
  2225. package/examples/node_modules/terser/main.js +0 -27
  2226. package/examples/node_modules/terser/node_modules/source-map/CHANGELOG.md +0 -344
  2227. package/examples/node_modules/terser/node_modules/source-map/LICENSE +0 -28
  2228. package/examples/node_modules/terser/node_modules/source-map/README.md +0 -822
  2229. package/examples/node_modules/terser/node_modules/source-map/dist/source-map.js +0 -3351
  2230. package/examples/node_modules/terser/node_modules/source-map/lib/array-set.js +0 -100
  2231. package/examples/node_modules/terser/node_modules/source-map/lib/base64-vlq.js +0 -111
  2232. package/examples/node_modules/terser/node_modules/source-map/lib/base64.js +0 -18
  2233. package/examples/node_modules/terser/node_modules/source-map/lib/binary-search.js +0 -107
  2234. package/examples/node_modules/terser/node_modules/source-map/lib/mapping-list.js +0 -80
  2235. package/examples/node_modules/terser/node_modules/source-map/lib/mappings.wasm +0 -0
  2236. package/examples/node_modules/terser/node_modules/source-map/lib/read-wasm.js +0 -40
  2237. package/examples/node_modules/terser/node_modules/source-map/lib/source-map-consumer.js +0 -1254
  2238. package/examples/node_modules/terser/node_modules/source-map/lib/source-map-generator.js +0 -413
  2239. package/examples/node_modules/terser/node_modules/source-map/lib/source-node.js +0 -404
  2240. package/examples/node_modules/terser/node_modules/source-map/lib/util.js +0 -546
  2241. package/examples/node_modules/terser/node_modules/source-map/lib/wasm.js +0 -107
  2242. package/examples/node_modules/terser/node_modules/source-map/package.json +0 -90
  2243. package/examples/node_modules/terser/node_modules/source-map/source-map.d.ts +0 -369
  2244. package/examples/node_modules/terser/node_modules/source-map/source-map.js +0 -8
  2245. package/examples/node_modules/terser/package.json +0 -152
  2246. package/examples/node_modules/terser/tools/domprops.js +0 -7771
  2247. package/examples/node_modules/terser/tools/exit.cjs +0 -7
  2248. package/examples/node_modules/terser/tools/props.html +0 -55
  2249. package/examples/node_modules/terser/tools/terser.d.ts +0 -207
  2250. package/examples/node_modules/terser-webpack-plugin/LICENSE +0 -20
  2251. package/examples/node_modules/terser-webpack-plugin/README.md +0 -742
  2252. package/examples/node_modules/terser-webpack-plugin/dist/index.js +0 -798
  2253. package/examples/node_modules/terser-webpack-plugin/dist/minify.js +0 -50
  2254. package/examples/node_modules/terser-webpack-plugin/dist/options.json +0 -164
  2255. package/examples/node_modules/terser-webpack-plugin/dist/utils.js +0 -687
  2256. package/examples/node_modules/terser-webpack-plugin/package.json +0 -114
  2257. package/examples/node_modules/terser-webpack-plugin/types/index.d.ts +0 -329
  2258. package/examples/node_modules/terser-webpack-plugin/types/minify.d.ts +0 -17
  2259. package/examples/node_modules/terser-webpack-plugin/types/utils.d.ts +0 -100
  2260. package/examples/node_modules/uri-js/LICENSE +0 -11
  2261. package/examples/node_modules/uri-js/README.md +0 -203
  2262. package/examples/node_modules/uri-js/dist/es5/uri.all.d.ts +0 -59
  2263. package/examples/node_modules/uri-js/dist/es5/uri.all.js +0 -1443
  2264. package/examples/node_modules/uri-js/dist/es5/uri.all.js.map +0 -1
  2265. package/examples/node_modules/uri-js/dist/es5/uri.all.min.d.ts +0 -59
  2266. package/examples/node_modules/uri-js/dist/es5/uri.all.min.js +0 -3
  2267. package/examples/node_modules/uri-js/dist/es5/uri.all.min.js.map +0 -1
  2268. package/examples/node_modules/uri-js/dist/esnext/index.d.ts +0 -1
  2269. package/examples/node_modules/uri-js/dist/esnext/index.js +0 -17
  2270. package/examples/node_modules/uri-js/dist/esnext/index.js.map +0 -1
  2271. package/examples/node_modules/uri-js/dist/esnext/regexps-iri.d.ts +0 -3
  2272. package/examples/node_modules/uri-js/dist/esnext/regexps-iri.js +0 -3
  2273. package/examples/node_modules/uri-js/dist/esnext/regexps-iri.js.map +0 -1
  2274. package/examples/node_modules/uri-js/dist/esnext/regexps-uri.d.ts +0 -4
  2275. package/examples/node_modules/uri-js/dist/esnext/regexps-uri.js +0 -42
  2276. package/examples/node_modules/uri-js/dist/esnext/regexps-uri.js.map +0 -1
  2277. package/examples/node_modules/uri-js/dist/esnext/schemes/http.d.ts +0 -3
  2278. package/examples/node_modules/uri-js/dist/esnext/schemes/http.js +0 -28
  2279. package/examples/node_modules/uri-js/dist/esnext/schemes/http.js.map +0 -1
  2280. package/examples/node_modules/uri-js/dist/esnext/schemes/https.d.ts +0 -3
  2281. package/examples/node_modules/uri-js/dist/esnext/schemes/https.js +0 -9
  2282. package/examples/node_modules/uri-js/dist/esnext/schemes/https.js.map +0 -1
  2283. package/examples/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts +0 -12
  2284. package/examples/node_modules/uri-js/dist/esnext/schemes/mailto.js +0 -148
  2285. package/examples/node_modules/uri-js/dist/esnext/schemes/mailto.js.map +0 -1
  2286. package/examples/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts +0 -7
  2287. package/examples/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js +0 -23
  2288. package/examples/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map +0 -1
  2289. package/examples/node_modules/uri-js/dist/esnext/schemes/urn.d.ts +0 -10
  2290. package/examples/node_modules/uri-js/dist/esnext/schemes/urn.js +0 -49
  2291. package/examples/node_modules/uri-js/dist/esnext/schemes/urn.js.map +0 -1
  2292. package/examples/node_modules/uri-js/dist/esnext/schemes/ws.d.ts +0 -7
  2293. package/examples/node_modules/uri-js/dist/esnext/schemes/ws.js +0 -41
  2294. package/examples/node_modules/uri-js/dist/esnext/schemes/ws.js.map +0 -1
  2295. package/examples/node_modules/uri-js/dist/esnext/schemes/wss.d.ts +0 -3
  2296. package/examples/node_modules/uri-js/dist/esnext/schemes/wss.js +0 -9
  2297. package/examples/node_modules/uri-js/dist/esnext/schemes/wss.js.map +0 -1
  2298. package/examples/node_modules/uri-js/dist/esnext/uri.d.ts +0 -59
  2299. package/examples/node_modules/uri-js/dist/esnext/uri.js +0 -480
  2300. package/examples/node_modules/uri-js/dist/esnext/uri.js.map +0 -1
  2301. package/examples/node_modules/uri-js/dist/esnext/util.d.ts +0 -6
  2302. package/examples/node_modules/uri-js/dist/esnext/util.js +0 -36
  2303. package/examples/node_modules/uri-js/dist/esnext/util.js.map +0 -1
  2304. package/examples/node_modules/uri-js/package.json +0 -77
  2305. package/examples/node_modules/uri-js/yarn.lock +0 -2558
  2306. package/examples/node_modules/watchpack/LICENSE +0 -20
  2307. package/examples/node_modules/watchpack/README.md +0 -149
  2308. package/examples/node_modules/watchpack/lib/DirectoryWatcher.js +0 -785
  2309. package/examples/node_modules/watchpack/lib/LinkResolver.js +0 -107
  2310. package/examples/node_modules/watchpack/lib/getWatcherManager.js +0 -52
  2311. package/examples/node_modules/watchpack/lib/reducePlan.js +0 -138
  2312. package/examples/node_modules/watchpack/lib/watchEventSource.js +0 -335
  2313. package/examples/node_modules/watchpack/lib/watchpack.js +0 -383
  2314. package/examples/node_modules/watchpack/package.json +0 -49
  2315. package/examples/node_modules/webpack/LICENSE +0 -20
  2316. package/examples/node_modules/webpack/README.md +0 -711
  2317. package/examples/node_modules/webpack/SECURITY.md +0 -9
  2318. package/examples/node_modules/webpack/bin/webpack.js +0 -163
  2319. package/examples/node_modules/webpack/hot/dev-server.js +0 -61
  2320. package/examples/node_modules/webpack/hot/emitter.js +0 -2
  2321. package/examples/node_modules/webpack/hot/lazy-compilation-node.js +0 -40
  2322. package/examples/node_modules/webpack/hot/lazy-compilation-web.js +0 -74
  2323. package/examples/node_modules/webpack/hot/log-apply-result.js +0 -44
  2324. package/examples/node_modules/webpack/hot/log.js +0 -59
  2325. package/examples/node_modules/webpack/hot/only-dev-server.js +0 -102
  2326. package/examples/node_modules/webpack/hot/poll.js +0 -37
  2327. package/examples/node_modules/webpack/hot/signal.js +0 -62
  2328. package/examples/node_modules/webpack/lib/APIPlugin.js +0 -253
  2329. package/examples/node_modules/webpack/lib/AbstractMethodError.js +0 -49
  2330. package/examples/node_modules/webpack/lib/AsyncDependenciesBlock.js +0 -106
  2331. package/examples/node_modules/webpack/lib/AsyncDependencyToInitialChunkError.js +0 -31
  2332. package/examples/node_modules/webpack/lib/AutomaticPrefetchPlugin.js +0 -65
  2333. package/examples/node_modules/webpack/lib/BannerPlugin.js +0 -123
  2334. package/examples/node_modules/webpack/lib/Cache.js +0 -161
  2335. package/examples/node_modules/webpack/lib/CacheFacade.js +0 -345
  2336. package/examples/node_modules/webpack/lib/CaseSensitiveModulesWarning.js +0 -71
  2337. package/examples/node_modules/webpack/lib/Chunk.js +0 -820
  2338. package/examples/node_modules/webpack/lib/ChunkGraph.js +0 -1727
  2339. package/examples/node_modules/webpack/lib/ChunkGroup.js +0 -584
  2340. package/examples/node_modules/webpack/lib/ChunkRenderError.js +0 -31
  2341. package/examples/node_modules/webpack/lib/ChunkTemplate.js +0 -138
  2342. package/examples/node_modules/webpack/lib/CleanPlugin.js +0 -420
  2343. package/examples/node_modules/webpack/lib/CodeGenerationError.js +0 -29
  2344. package/examples/node_modules/webpack/lib/CodeGenerationResults.js +0 -155
  2345. package/examples/node_modules/webpack/lib/CommentCompilationWarning.js +0 -33
  2346. package/examples/node_modules/webpack/lib/CompatibilityPlugin.js +0 -152
  2347. package/examples/node_modules/webpack/lib/Compilation.js +0 -5292
  2348. package/examples/node_modules/webpack/lib/Compiler.js +0 -1217
  2349. package/examples/node_modules/webpack/lib/ConcatenationScope.js +0 -159
  2350. package/examples/node_modules/webpack/lib/ConcurrentCompilationError.js +0 -18
  2351. package/examples/node_modules/webpack/lib/ConditionalInitFragment.js +0 -112
  2352. package/examples/node_modules/webpack/lib/ConstPlugin.js +0 -497
  2353. package/examples/node_modules/webpack/lib/ContextExclusionPlugin.js +0 -32
  2354. package/examples/node_modules/webpack/lib/ContextModule.js +0 -1147
  2355. package/examples/node_modules/webpack/lib/ContextModuleFactory.js +0 -437
  2356. package/examples/node_modules/webpack/lib/ContextReplacementPlugin.js +0 -157
  2357. package/examples/node_modules/webpack/lib/DefinePlugin.js +0 -601
  2358. package/examples/node_modules/webpack/lib/DelegatedModule.js +0 -239
  2359. package/examples/node_modules/webpack/lib/DelegatedModuleFactoryPlugin.js +0 -91
  2360. package/examples/node_modules/webpack/lib/DelegatedPlugin.js +0 -43
  2361. package/examples/node_modules/webpack/lib/DependenciesBlock.js +0 -107
  2362. package/examples/node_modules/webpack/lib/Dependency.js +0 -348
  2363. package/examples/node_modules/webpack/lib/DependencyTemplate.js +0 -57
  2364. package/examples/node_modules/webpack/lib/DependencyTemplates.js +0 -67
  2365. package/examples/node_modules/webpack/lib/DllEntryPlugin.js +0 -55
  2366. package/examples/node_modules/webpack/lib/DllModule.js +0 -157
  2367. package/examples/node_modules/webpack/lib/DllModuleFactory.js +0 -37
  2368. package/examples/node_modules/webpack/lib/DllPlugin.js +0 -68
  2369. package/examples/node_modules/webpack/lib/DllReferencePlugin.js +0 -162
  2370. package/examples/node_modules/webpack/lib/DynamicEntryPlugin.js +0 -79
  2371. package/examples/node_modules/webpack/lib/EntryOptionPlugin.js +0 -93
  2372. package/examples/node_modules/webpack/lib/EntryPlugin.js +0 -67
  2373. package/examples/node_modules/webpack/lib/Entrypoint.js +0 -101
  2374. package/examples/node_modules/webpack/lib/EnvironmentPlugin.js +0 -63
  2375. package/examples/node_modules/webpack/lib/ErrorHelpers.js +0 -61
  2376. package/examples/node_modules/webpack/lib/EvalDevToolModulePlugin.js +0 -117
  2377. package/examples/node_modules/webpack/lib/EvalSourceMapDevToolPlugin.js +0 -206
  2378. package/examples/node_modules/webpack/lib/ExportsInfo.js +0 -1523
  2379. package/examples/node_modules/webpack/lib/ExportsInfoApiPlugin.js +0 -71
  2380. package/examples/node_modules/webpack/lib/ExternalModule.js +0 -758
  2381. package/examples/node_modules/webpack/lib/ExternalModuleFactoryPlugin.js +0 -254
  2382. package/examples/node_modules/webpack/lib/ExternalsPlugin.js +0 -37
  2383. package/examples/node_modules/webpack/lib/FileSystemInfo.js +0 -3559
  2384. package/examples/node_modules/webpack/lib/FlagAllModulesAsUsedPlugin.js +0 -55
  2385. package/examples/node_modules/webpack/lib/FlagDependencyExportsPlugin.js +0 -417
  2386. package/examples/node_modules/webpack/lib/FlagDependencyUsagePlugin.js +0 -347
  2387. package/examples/node_modules/webpack/lib/FlagEntryExportAsUsedPlugin.js +0 -53
  2388. package/examples/node_modules/webpack/lib/Generator.js +0 -149
  2389. package/examples/node_modules/webpack/lib/GraphHelpers.js +0 -37
  2390. package/examples/node_modules/webpack/lib/HarmonyLinkingError.js +0 -16
  2391. package/examples/node_modules/webpack/lib/HookWebpackError.js +0 -93
  2392. package/examples/node_modules/webpack/lib/HotModuleReplacementPlugin.js +0 -778
  2393. package/examples/node_modules/webpack/lib/HotUpdateChunk.js +0 -19
  2394. package/examples/node_modules/webpack/lib/IgnoreErrorModuleFactory.js +0 -39
  2395. package/examples/node_modules/webpack/lib/IgnorePlugin.js +0 -83
  2396. package/examples/node_modules/webpack/lib/IgnoreWarningsPlugin.js +0 -39
  2397. package/examples/node_modules/webpack/lib/InitFragment.js +0 -161
  2398. package/examples/node_modules/webpack/lib/InvalidDependenciesModuleWarning.js +0 -44
  2399. package/examples/node_modules/webpack/lib/JavascriptMetaInfoPlugin.js +0 -68
  2400. package/examples/node_modules/webpack/lib/LibManifestPlugin.js +0 -115
  2401. package/examples/node_modules/webpack/lib/LibraryTemplatePlugin.js +0 -48
  2402. package/examples/node_modules/webpack/lib/LoaderOptionsPlugin.js +0 -71
  2403. package/examples/node_modules/webpack/lib/LoaderTargetPlugin.js +0 -37
  2404. package/examples/node_modules/webpack/lib/MainTemplate.js +0 -329
  2405. package/examples/node_modules/webpack/lib/Module.js +0 -1091
  2406. package/examples/node_modules/webpack/lib/ModuleBuildError.js +0 -77
  2407. package/examples/node_modules/webpack/lib/ModuleDependencyError.js +0 -40
  2408. package/examples/node_modules/webpack/lib/ModuleDependencyWarning.js +0 -45
  2409. package/examples/node_modules/webpack/lib/ModuleError.js +0 -61
  2410. package/examples/node_modules/webpack/lib/ModuleFactory.js +0 -50
  2411. package/examples/node_modules/webpack/lib/ModuleFilenameHelpers.js +0 -277
  2412. package/examples/node_modules/webpack/lib/ModuleGraph.js +0 -856
  2413. package/examples/node_modules/webpack/lib/ModuleGraphConnection.js +0 -191
  2414. package/examples/node_modules/webpack/lib/ModuleHashingError.js +0 -29
  2415. package/examples/node_modules/webpack/lib/ModuleInfoHeaderPlugin.js +0 -255
  2416. package/examples/node_modules/webpack/lib/ModuleNotFoundError.js +0 -86
  2417. package/examples/node_modules/webpack/lib/ModuleParseError.js +0 -109
  2418. package/examples/node_modules/webpack/lib/ModuleProfile.js +0 -107
  2419. package/examples/node_modules/webpack/lib/ModuleRestoreError.js +0 -42
  2420. package/examples/node_modules/webpack/lib/ModuleStoreError.js +0 -42
  2421. package/examples/node_modules/webpack/lib/ModuleTemplate.js +0 -142
  2422. package/examples/node_modules/webpack/lib/ModuleWarning.js +0 -61
  2423. package/examples/node_modules/webpack/lib/MultiCompiler.js +0 -582
  2424. package/examples/node_modules/webpack/lib/MultiStats.js +0 -166
  2425. package/examples/node_modules/webpack/lib/MultiWatching.js +0 -77
  2426. package/examples/node_modules/webpack/lib/NoEmitOnErrorsPlugin.js +0 -28
  2427. package/examples/node_modules/webpack/lib/NoModeWarning.js +0 -22
  2428. package/examples/node_modules/webpack/lib/NodeStuffInWebError.js +0 -34
  2429. package/examples/node_modules/webpack/lib/NodeStuffPlugin.js +0 -186
  2430. package/examples/node_modules/webpack/lib/NormalModule.js +0 -1411
  2431. package/examples/node_modules/webpack/lib/NormalModuleFactory.js +0 -1118
  2432. package/examples/node_modules/webpack/lib/NormalModuleReplacementPlugin.js +0 -71
  2433. package/examples/node_modules/webpack/lib/NullFactory.js +0 -23
  2434. package/examples/node_modules/webpack/lib/OptimizationStages.js +0 -10
  2435. package/examples/node_modules/webpack/lib/OptionsApply.js +0 -11
  2436. package/examples/node_modules/webpack/lib/Parser.js +0 -38
  2437. package/examples/node_modules/webpack/lib/PrefetchPlugin.js +0 -50
  2438. package/examples/node_modules/webpack/lib/ProgressPlugin.js +0 -613
  2439. package/examples/node_modules/webpack/lib/ProvidePlugin.js +0 -101
  2440. package/examples/node_modules/webpack/lib/RawModule.js +0 -152
  2441. package/examples/node_modules/webpack/lib/RecordIdsPlugin.js +0 -238
  2442. package/examples/node_modules/webpack/lib/RequestShortener.js +0 -34
  2443. package/examples/node_modules/webpack/lib/RequireJsStuffPlugin.js +0 -77
  2444. package/examples/node_modules/webpack/lib/ResolverFactory.js +0 -151
  2445. package/examples/node_modules/webpack/lib/RuntimeGlobals.js +0 -381
  2446. package/examples/node_modules/webpack/lib/RuntimeModule.js +0 -213
  2447. package/examples/node_modules/webpack/lib/RuntimePlugin.js +0 -444
  2448. package/examples/node_modules/webpack/lib/RuntimeTemplate.js +0 -1041
  2449. package/examples/node_modules/webpack/lib/SelfModuleFactory.js +0 -21
  2450. package/examples/node_modules/webpack/lib/SingleEntryPlugin.js +0 -8
  2451. package/examples/node_modules/webpack/lib/SizeFormatHelpers.js +0 -27
  2452. package/examples/node_modules/webpack/lib/SourceMapDevToolModuleOptionsPlugin.js +0 -57
  2453. package/examples/node_modules/webpack/lib/SourceMapDevToolPlugin.js +0 -560
  2454. package/examples/node_modules/webpack/lib/Stats.js +0 -84
  2455. package/examples/node_modules/webpack/lib/Template.js +0 -419
  2456. package/examples/node_modules/webpack/lib/TemplatedPathPlugin.js +0 -346
  2457. package/examples/node_modules/webpack/lib/UnhandledSchemeError.js +0 -33
  2458. package/examples/node_modules/webpack/lib/UnsupportedFeatureWarning.js +0 -32
  2459. package/examples/node_modules/webpack/lib/UseStrictPlugin.js +0 -56
  2460. package/examples/node_modules/webpack/lib/WarnCaseSensitiveModulesPlugin.js +0 -53
  2461. package/examples/node_modules/webpack/lib/WarnDeprecatedOptionPlugin.js +0 -54
  2462. package/examples/node_modules/webpack/lib/WarnNoModeSetPlugin.js +0 -25
  2463. package/examples/node_modules/webpack/lib/WatchIgnorePlugin.js +0 -132
  2464. package/examples/node_modules/webpack/lib/Watching.js +0 -479
  2465. package/examples/node_modules/webpack/lib/WebpackError.js +0 -61
  2466. package/examples/node_modules/webpack/lib/WebpackIsIncludedPlugin.js +0 -85
  2467. package/examples/node_modules/webpack/lib/WebpackOptionsApply.js +0 -700
  2468. package/examples/node_modules/webpack/lib/WebpackOptionsDefaulter.js +0 -19
  2469. package/examples/node_modules/webpack/lib/asset/AssetGenerator.js +0 -464
  2470. package/examples/node_modules/webpack/lib/asset/AssetModulesPlugin.js +0 -223
  2471. package/examples/node_modules/webpack/lib/asset/AssetParser.js +0 -56
  2472. package/examples/node_modules/webpack/lib/asset/AssetSourceGenerator.js +0 -71
  2473. package/examples/node_modules/webpack/lib/asset/AssetSourceParser.js +0 -31
  2474. package/examples/node_modules/webpack/lib/asset/RawDataUrlModule.js +0 -148
  2475. package/examples/node_modules/webpack/lib/async-modules/AwaitDependenciesInitFragment.js +0 -69
  2476. package/examples/node_modules/webpack/lib/async-modules/InferAsyncModulesPlugin.js +0 -55
  2477. package/examples/node_modules/webpack/lib/buildChunkGraph.js +0 -1401
  2478. package/examples/node_modules/webpack/lib/cache/AddBuildDependenciesPlugin.js +0 -33
  2479. package/examples/node_modules/webpack/lib/cache/AddManagedPathsPlugin.js +0 -35
  2480. package/examples/node_modules/webpack/lib/cache/IdleFileCachePlugin.js +0 -227
  2481. package/examples/node_modules/webpack/lib/cache/MemoryCachePlugin.js +0 -57
  2482. package/examples/node_modules/webpack/lib/cache/MemoryWithGcCachePlugin.js +0 -129
  2483. package/examples/node_modules/webpack/lib/cache/PackFileCacheStrategy.js +0 -1426
  2484. package/examples/node_modules/webpack/lib/cache/ResolverCachePlugin.js +0 -354
  2485. package/examples/node_modules/webpack/lib/cache/getLazyHashedEtag.js +0 -81
  2486. package/examples/node_modules/webpack/lib/cache/mergeEtags.js +0 -74
  2487. package/examples/node_modules/webpack/lib/cli.js +0 -655
  2488. package/examples/node_modules/webpack/lib/config/browserslistTargetHandler.js +0 -333
  2489. package/examples/node_modules/webpack/lib/config/defaults.js +0 -1309
  2490. package/examples/node_modules/webpack/lib/config/normalization.js +0 -529
  2491. package/examples/node_modules/webpack/lib/config/target.js +0 -348
  2492. package/examples/node_modules/webpack/lib/container/ContainerEntryDependency.js +0 -47
  2493. package/examples/node_modules/webpack/lib/container/ContainerEntryModule.js +0 -283
  2494. package/examples/node_modules/webpack/lib/container/ContainerEntryModuleFactory.js +0 -27
  2495. package/examples/node_modules/webpack/lib/container/ContainerExposedDependency.js +0 -52
  2496. package/examples/node_modules/webpack/lib/container/ContainerPlugin.js +0 -105
  2497. package/examples/node_modules/webpack/lib/container/ContainerReferencePlugin.js +0 -142
  2498. package/examples/node_modules/webpack/lib/container/FallbackDependency.js +0 -51
  2499. package/examples/node_modules/webpack/lib/container/FallbackItemDependency.js +0 -30
  2500. package/examples/node_modules/webpack/lib/container/FallbackModule.js +0 -173
  2501. package/examples/node_modules/webpack/lib/container/FallbackModuleFactory.js +0 -27
  2502. package/examples/node_modules/webpack/lib/container/ModuleFederationPlugin.js +0 -92
  2503. package/examples/node_modules/webpack/lib/container/RemoteModule.js +0 -171
  2504. package/examples/node_modules/webpack/lib/container/RemoteRuntimeModule.js +0 -128
  2505. package/examples/node_modules/webpack/lib/container/RemoteToExternalDependency.js +0 -30
  2506. package/examples/node_modules/webpack/lib/container/options.js +0 -91
  2507. package/examples/node_modules/webpack/lib/css/CssExportsGenerator.js +0 -139
  2508. package/examples/node_modules/webpack/lib/css/CssGenerator.js +0 -109
  2509. package/examples/node_modules/webpack/lib/css/CssLoadingRuntimeModule.js +0 -440
  2510. package/examples/node_modules/webpack/lib/css/CssModulesPlugin.js +0 -462
  2511. package/examples/node_modules/webpack/lib/css/CssParser.js +0 -618
  2512. package/examples/node_modules/webpack/lib/css/walkCssTokens.js +0 -659
  2513. package/examples/node_modules/webpack/lib/debug/ProfilingPlugin.js +0 -454
  2514. package/examples/node_modules/webpack/lib/dependencies/AMDDefineDependency.js +0 -221
  2515. package/examples/node_modules/webpack/lib/dependencies/AMDDefineDependencyParserPlugin.js +0 -354
  2516. package/examples/node_modules/webpack/lib/dependencies/AMDPlugin.js +0 -216
  2517. package/examples/node_modules/webpack/lib/dependencies/AMDRequireArrayDependency.js +0 -99
  2518. package/examples/node_modules/webpack/lib/dependencies/AMDRequireContextDependency.js +0 -53
  2519. package/examples/node_modules/webpack/lib/dependencies/AMDRequireDependenciesBlock.js +0 -22
  2520. package/examples/node_modules/webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin.js +0 -279
  2521. package/examples/node_modules/webpack/lib/dependencies/AMDRequireDependency.js +0 -174
  2522. package/examples/node_modules/webpack/lib/dependencies/AMDRequireItemDependency.js +0 -35
  2523. package/examples/node_modules/webpack/lib/dependencies/AMDRuntimeModules.js +0 -48
  2524. package/examples/node_modules/webpack/lib/dependencies/CachedConstDependency.js +0 -106
  2525. package/examples/node_modules/webpack/lib/dependencies/CommonJsDependencyHelpers.js +0 -49
  2526. package/examples/node_modules/webpack/lib/dependencies/CommonJsExportRequireDependency.js +0 -374
  2527. package/examples/node_modules/webpack/lib/dependencies/CommonJsExportsDependency.js +0 -160
  2528. package/examples/node_modules/webpack/lib/dependencies/CommonJsExportsParserPlugin.js +0 -336
  2529. package/examples/node_modules/webpack/lib/dependencies/CommonJsFullRequireDependency.js +0 -136
  2530. package/examples/node_modules/webpack/lib/dependencies/CommonJsImportsParserPlugin.js +0 -388
  2531. package/examples/node_modules/webpack/lib/dependencies/CommonJsPlugin.js +0 -280
  2532. package/examples/node_modules/webpack/lib/dependencies/CommonJsRequireContextDependency.js +0 -55
  2533. package/examples/node_modules/webpack/lib/dependencies/CommonJsRequireDependency.js +0 -34
  2534. package/examples/node_modules/webpack/lib/dependencies/CommonJsSelfReferenceDependency.js +0 -141
  2535. package/examples/node_modules/webpack/lib/dependencies/ConstDependency.js +0 -108
  2536. package/examples/node_modules/webpack/lib/dependencies/ContextDependency.js +0 -147
  2537. package/examples/node_modules/webpack/lib/dependencies/ContextDependencyHelpers.js +0 -232
  2538. package/examples/node_modules/webpack/lib/dependencies/ContextDependencyTemplateAsId.js +0 -61
  2539. package/examples/node_modules/webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall.js +0 -59
  2540. package/examples/node_modules/webpack/lib/dependencies/ContextElementDependency.js +0 -77
  2541. package/examples/node_modules/webpack/lib/dependencies/CreateScriptUrlDependency.js +0 -66
  2542. package/examples/node_modules/webpack/lib/dependencies/CriticalDependencyWarning.js +0 -25
  2543. package/examples/node_modules/webpack/lib/dependencies/CssExportDependency.js +0 -85
  2544. package/examples/node_modules/webpack/lib/dependencies/CssImportDependency.js +0 -75
  2545. package/examples/node_modules/webpack/lib/dependencies/CssLocalIdentifierDependency.js +0 -119
  2546. package/examples/node_modules/webpack/lib/dependencies/CssSelfLocalIdentifierDependency.js +0 -101
  2547. package/examples/node_modules/webpack/lib/dependencies/CssUrlDependency.js +0 -132
  2548. package/examples/node_modules/webpack/lib/dependencies/DelegatedSourceDependency.js +0 -30
  2549. package/examples/node_modules/webpack/lib/dependencies/DllEntryDependency.js +0 -47
  2550. package/examples/node_modules/webpack/lib/dependencies/DynamicExports.js +0 -69
  2551. package/examples/node_modules/webpack/lib/dependencies/EntryDependency.js +0 -30
  2552. package/examples/node_modules/webpack/lib/dependencies/ExportsInfoDependency.js +0 -143
  2553. package/examples/node_modules/webpack/lib/dependencies/HarmonyAcceptDependency.js +0 -134
  2554. package/examples/node_modules/webpack/lib/dependencies/HarmonyAcceptImportDependency.js +0 -37
  2555. package/examples/node_modules/webpack/lib/dependencies/HarmonyCompatibilityDependency.js +0 -91
  2556. package/examples/node_modules/webpack/lib/dependencies/HarmonyDetectionParserPlugin.js +0 -97
  2557. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportDependencyParserPlugin.js +0 -185
  2558. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportExpressionDependency.js +0 -190
  2559. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportHeaderDependency.js +0 -65
  2560. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency.js +0 -1271
  2561. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportInitFragment.js +0 -168
  2562. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportSpecifierDependency.js +0 -111
  2563. package/examples/node_modules/webpack/lib/dependencies/HarmonyExports.js +0 -40
  2564. package/examples/node_modules/webpack/lib/dependencies/HarmonyImportDependency.js +0 -359
  2565. package/examples/node_modules/webpack/lib/dependencies/HarmonyImportDependencyParserPlugin.js +0 -256
  2566. package/examples/node_modules/webpack/lib/dependencies/HarmonyImportSideEffectDependency.js +0 -80
  2567. package/examples/node_modules/webpack/lib/dependencies/HarmonyImportSpecifierDependency.js +0 -331
  2568. package/examples/node_modules/webpack/lib/dependencies/HarmonyModulesPlugin.js +0 -121
  2569. package/examples/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js +0 -27
  2570. package/examples/node_modules/webpack/lib/dependencies/ImportContextDependency.js +0 -52
  2571. package/examples/node_modules/webpack/lib/dependencies/ImportDependency.js +0 -101
  2572. package/examples/node_modules/webpack/lib/dependencies/ImportEagerDependency.js +0 -69
  2573. package/examples/node_modules/webpack/lib/dependencies/ImportMetaContextDependency.js +0 -35
  2574. package/examples/node_modules/webpack/lib/dependencies/ImportMetaContextDependencyParserPlugin.js +0 -252
  2575. package/examples/node_modules/webpack/lib/dependencies/ImportMetaContextPlugin.js +0 -59
  2576. package/examples/node_modules/webpack/lib/dependencies/ImportMetaHotAcceptDependency.js +0 -35
  2577. package/examples/node_modules/webpack/lib/dependencies/ImportMetaHotDeclineDependency.js +0 -36
  2578. package/examples/node_modules/webpack/lib/dependencies/ImportMetaPlugin.js +0 -203
  2579. package/examples/node_modules/webpack/lib/dependencies/ImportParserPlugin.js +0 -267
  2580. package/examples/node_modules/webpack/lib/dependencies/ImportPlugin.js +0 -82
  2581. package/examples/node_modules/webpack/lib/dependencies/ImportWeakDependency.js +0 -67
  2582. package/examples/node_modules/webpack/lib/dependencies/JsonExportsDependency.js +0 -103
  2583. package/examples/node_modules/webpack/lib/dependencies/LoaderDependency.js +0 -27
  2584. package/examples/node_modules/webpack/lib/dependencies/LoaderImportDependency.js +0 -28
  2585. package/examples/node_modules/webpack/lib/dependencies/LoaderPlugin.js +0 -261
  2586. package/examples/node_modules/webpack/lib/dependencies/LocalModule.js +0 -44
  2587. package/examples/node_modules/webpack/lib/dependencies/LocalModuleDependency.js +0 -69
  2588. package/examples/node_modules/webpack/lib/dependencies/LocalModulesHelpers.js +0 -50
  2589. package/examples/node_modules/webpack/lib/dependencies/ModuleDecoratorDependency.js +0 -129
  2590. package/examples/node_modules/webpack/lib/dependencies/ModuleDependency.js +0 -81
  2591. package/examples/node_modules/webpack/lib/dependencies/ModuleDependencyTemplateAsId.js +0 -34
  2592. package/examples/node_modules/webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId.js +0 -38
  2593. package/examples/node_modules/webpack/lib/dependencies/ModuleHotAcceptDependency.js +0 -35
  2594. package/examples/node_modules/webpack/lib/dependencies/ModuleHotDeclineDependency.js +0 -36
  2595. package/examples/node_modules/webpack/lib/dependencies/NullDependency.js +0 -40
  2596. package/examples/node_modules/webpack/lib/dependencies/PrefetchDependency.js +0 -24
  2597. package/examples/node_modules/webpack/lib/dependencies/ProvidedDependency.js +0 -122
  2598. package/examples/node_modules/webpack/lib/dependencies/PureExpressionDependency.js +0 -128
  2599. package/examples/node_modules/webpack/lib/dependencies/RequireContextDependency.js +0 -31
  2600. package/examples/node_modules/webpack/lib/dependencies/RequireContextDependencyParserPlugin.js +0 -58
  2601. package/examples/node_modules/webpack/lib/dependencies/RequireContextPlugin.js +0 -150
  2602. package/examples/node_modules/webpack/lib/dependencies/RequireEnsureDependenciesBlock.js +0 -22
  2603. package/examples/node_modules/webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin.js +0 -121
  2604. package/examples/node_modules/webpack/lib/dependencies/RequireEnsureDependency.js +0 -101
  2605. package/examples/node_modules/webpack/lib/dependencies/RequireEnsureItemDependency.js +0 -33
  2606. package/examples/node_modules/webpack/lib/dependencies/RequireEnsurePlugin.js +0 -66
  2607. package/examples/node_modules/webpack/lib/dependencies/RequireHeaderDependency.js +0 -57
  2608. package/examples/node_modules/webpack/lib/dependencies/RequireIncludeDependency.js +0 -74
  2609. package/examples/node_modules/webpack/lib/dependencies/RequireIncludeDependencyParserPlugin.js +0 -77
  2610. package/examples/node_modules/webpack/lib/dependencies/RequireIncludePlugin.js +0 -42
  2611. package/examples/node_modules/webpack/lib/dependencies/RequireResolveContextDependency.js +0 -50
  2612. package/examples/node_modules/webpack/lib/dependencies/RequireResolveDependency.js +0 -51
  2613. package/examples/node_modules/webpack/lib/dependencies/RequireResolveHeaderDependency.js +0 -63
  2614. package/examples/node_modules/webpack/lib/dependencies/RuntimeRequirementsDependency.js +0 -77
  2615. package/examples/node_modules/webpack/lib/dependencies/StaticExportsDependency.js +0 -66
  2616. package/examples/node_modules/webpack/lib/dependencies/SystemPlugin.js +0 -140
  2617. package/examples/node_modules/webpack/lib/dependencies/SystemRuntimeModule.js +0 -35
  2618. package/examples/node_modules/webpack/lib/dependencies/URLDependency.js +0 -158
  2619. package/examples/node_modules/webpack/lib/dependencies/URLPlugin.js +0 -114
  2620. package/examples/node_modules/webpack/lib/dependencies/UnsupportedDependency.js +0 -69
  2621. package/examples/node_modules/webpack/lib/dependencies/WebAssemblyExportImportedDependency.js +0 -79
  2622. package/examples/node_modules/webpack/lib/dependencies/WebAssemblyImportDependency.js +0 -100
  2623. package/examples/node_modules/webpack/lib/dependencies/WebpackIsIncludedDependency.js +0 -80
  2624. package/examples/node_modules/webpack/lib/dependencies/WorkerDependency.js +0 -89
  2625. package/examples/node_modules/webpack/lib/dependencies/WorkerPlugin.js +0 -416
  2626. package/examples/node_modules/webpack/lib/dependencies/getFunctionExpression.js +0 -55
  2627. package/examples/node_modules/webpack/lib/dependencies/processExportInfo.js +0 -65
  2628. package/examples/node_modules/webpack/lib/electron/ElectronTargetPlugin.js +0 -68
  2629. package/examples/node_modules/webpack/lib/errors/BuildCycleError.js +0 -27
  2630. package/examples/node_modules/webpack/lib/esm/ExportWebpackRequireRuntimeModule.js +0 -29
  2631. package/examples/node_modules/webpack/lib/esm/ModuleChunkFormatPlugin.js +0 -202
  2632. package/examples/node_modules/webpack/lib/esm/ModuleChunkLoadingPlugin.js +0 -76
  2633. package/examples/node_modules/webpack/lib/esm/ModuleChunkLoadingRuntimeModule.js +0 -242
  2634. package/examples/node_modules/webpack/lib/formatLocation.js +0 -68
  2635. package/examples/node_modules/webpack/lib/hmr/HotModuleReplacement.runtime.js +0 -394
  2636. package/examples/node_modules/webpack/lib/hmr/HotModuleReplacementRuntimeModule.js +0 -42
  2637. package/examples/node_modules/webpack/lib/hmr/JavascriptHotModuleReplacement.runtime.js +0 -462
  2638. package/examples/node_modules/webpack/lib/hmr/LazyCompilationPlugin.js +0 -418
  2639. package/examples/node_modules/webpack/lib/hmr/lazyCompilationBackend.js +0 -143
  2640. package/examples/node_modules/webpack/lib/ids/ChunkModuleIdRangePlugin.js +0 -80
  2641. package/examples/node_modules/webpack/lib/ids/DeterministicChunkIdsPlugin.js +0 -70
  2642. package/examples/node_modules/webpack/lib/ids/DeterministicModuleIdsPlugin.js +0 -93
  2643. package/examples/node_modules/webpack/lib/ids/HashedModuleIdsPlugin.js +0 -77
  2644. package/examples/node_modules/webpack/lib/ids/IdHelpers.js +0 -477
  2645. package/examples/node_modules/webpack/lib/ids/NamedChunkIdsPlugin.js +0 -81
  2646. package/examples/node_modules/webpack/lib/ids/NamedModuleIdsPlugin.js +0 -58
  2647. package/examples/node_modules/webpack/lib/ids/NaturalChunkIdsPlugin.js +0 -33
  2648. package/examples/node_modules/webpack/lib/ids/NaturalModuleIdsPlugin.js +0 -39
  2649. package/examples/node_modules/webpack/lib/ids/OccurrenceChunkIdsPlugin.js +0 -80
  2650. package/examples/node_modules/webpack/lib/ids/OccurrenceModuleIdsPlugin.js +0 -159
  2651. package/examples/node_modules/webpack/lib/ids/SyncModuleIdsPlugin.js +0 -140
  2652. package/examples/node_modules/webpack/lib/index.js +0 -579
  2653. package/examples/node_modules/webpack/lib/javascript/ArrayPushCallbackChunkFormatPlugin.js +0 -154
  2654. package/examples/node_modules/webpack/lib/javascript/BasicEvaluatedExpression.js +0 -480
  2655. package/examples/node_modules/webpack/lib/javascript/ChunkHelpers.js +0 -33
  2656. package/examples/node_modules/webpack/lib/javascript/CommonJsChunkFormatPlugin.js +0 -172
  2657. package/examples/node_modules/webpack/lib/javascript/EnableChunkLoadingPlugin.js +0 -118
  2658. package/examples/node_modules/webpack/lib/javascript/JavascriptGenerator.js +0 -225
  2659. package/examples/node_modules/webpack/lib/javascript/JavascriptModulesPlugin.js +0 -1370
  2660. package/examples/node_modules/webpack/lib/javascript/JavascriptParser.js +0 -3776
  2661. package/examples/node_modules/webpack/lib/javascript/JavascriptParserHelpers.js +0 -107
  2662. package/examples/node_modules/webpack/lib/javascript/StartupHelpers.js +0 -132
  2663. package/examples/node_modules/webpack/lib/json/JsonData.js +0 -41
  2664. package/examples/node_modules/webpack/lib/json/JsonGenerator.js +0 -191
  2665. package/examples/node_modules/webpack/lib/json/JsonModulesPlugin.js +0 -50
  2666. package/examples/node_modules/webpack/lib/json/JsonParser.js +0 -57
  2667. package/examples/node_modules/webpack/lib/library/AbstractLibraryPlugin.js +0 -297
  2668. package/examples/node_modules/webpack/lib/library/AmdLibraryPlugin.js +0 -162
  2669. package/examples/node_modules/webpack/lib/library/AssignLibraryPlugin.js +0 -375
  2670. package/examples/node_modules/webpack/lib/library/EnableLibraryPlugin.js +0 -248
  2671. package/examples/node_modules/webpack/lib/library/ExportPropertyLibraryPlugin.js +0 -113
  2672. package/examples/node_modules/webpack/lib/library/JsonpLibraryPlugin.js +0 -88
  2673. package/examples/node_modules/webpack/lib/library/ModuleLibraryPlugin.js +0 -104
  2674. package/examples/node_modules/webpack/lib/library/SystemLibraryPlugin.js +0 -233
  2675. package/examples/node_modules/webpack/lib/library/UmdLibraryPlugin.js +0 -324
  2676. package/examples/node_modules/webpack/lib/logging/Logger.js +0 -163
  2677. package/examples/node_modules/webpack/lib/logging/createConsoleLogger.js +0 -228
  2678. package/examples/node_modules/webpack/lib/logging/runtime.js +0 -46
  2679. package/examples/node_modules/webpack/lib/logging/truncateArgs.js +0 -82
  2680. package/examples/node_modules/webpack/lib/node/CommonJsChunkLoadingPlugin.js +0 -105
  2681. package/examples/node_modules/webpack/lib/node/NodeEnvironmentPlugin.js +0 -60
  2682. package/examples/node_modules/webpack/lib/node/NodeSourcePlugin.js +0 -19
  2683. package/examples/node_modules/webpack/lib/node/NodeTargetPlugin.js +0 -81
  2684. package/examples/node_modules/webpack/lib/node/NodeTemplatePlugin.js +0 -33
  2685. package/examples/node_modules/webpack/lib/node/NodeWatchFileSystem.js +0 -194
  2686. package/examples/node_modules/webpack/lib/node/ReadFileChunkLoadingRuntimeModule.js +0 -291
  2687. package/examples/node_modules/webpack/lib/node/ReadFileCompileAsyncWasmPlugin.js +0 -107
  2688. package/examples/node_modules/webpack/lib/node/ReadFileCompileWasmPlugin.js +0 -93
  2689. package/examples/node_modules/webpack/lib/node/RequireChunkLoadingRuntimeModule.js +0 -238
  2690. package/examples/node_modules/webpack/lib/node/nodeConsole.js +0 -143
  2691. package/examples/node_modules/webpack/lib/optimize/AggressiveMergingPlugin.js +0 -92
  2692. package/examples/node_modules/webpack/lib/optimize/AggressiveSplittingPlugin.js +0 -329
  2693. package/examples/node_modules/webpack/lib/optimize/ConcatenatedModule.js +0 -1879
  2694. package/examples/node_modules/webpack/lib/optimize/EnsureChunkConditionsPlugin.js +0 -85
  2695. package/examples/node_modules/webpack/lib/optimize/FlagIncludedChunksPlugin.js +0 -118
  2696. package/examples/node_modules/webpack/lib/optimize/InnerGraph.js +0 -346
  2697. package/examples/node_modules/webpack/lib/optimize/InnerGraphPlugin.js +0 -368
  2698. package/examples/node_modules/webpack/lib/optimize/LimitChunkCountPlugin.js +0 -256
  2699. package/examples/node_modules/webpack/lib/optimize/MangleExportsPlugin.js +0 -177
  2700. package/examples/node_modules/webpack/lib/optimize/MergeDuplicateChunksPlugin.js +0 -115
  2701. package/examples/node_modules/webpack/lib/optimize/MinChunkSizePlugin.js +0 -113
  2702. package/examples/node_modules/webpack/lib/optimize/MinMaxSizeWarning.js +0 -30
  2703. package/examples/node_modules/webpack/lib/optimize/ModuleConcatenationPlugin.js +0 -866
  2704. package/examples/node_modules/webpack/lib/optimize/RealContentHashPlugin.js +0 -408
  2705. package/examples/node_modules/webpack/lib/optimize/RemoveEmptyChunksPlugin.js +0 -57
  2706. package/examples/node_modules/webpack/lib/optimize/RemoveParentModulesPlugin.js +0 -121
  2707. package/examples/node_modules/webpack/lib/optimize/RuntimeChunkPlugin.js +0 -44
  2708. package/examples/node_modules/webpack/lib/optimize/SideEffectsFlagPlugin.js +0 -337
  2709. package/examples/node_modules/webpack/lib/optimize/SplitChunksPlugin.js +0 -1723
  2710. package/examples/node_modules/webpack/lib/performance/AssetsOverSizeLimitWarning.js +0 -32
  2711. package/examples/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js +0 -35
  2712. package/examples/node_modules/webpack/lib/performance/NoAsyncChunksWarning.js +0 -20
  2713. package/examples/node_modules/webpack/lib/performance/SizeLimitsPlugin.js +0 -165
  2714. package/examples/node_modules/webpack/lib/prefetch/ChunkPrefetchFunctionRuntimeModule.js +0 -44
  2715. package/examples/node_modules/webpack/lib/prefetch/ChunkPrefetchPreloadPlugin.js +0 -95
  2716. package/examples/node_modules/webpack/lib/prefetch/ChunkPrefetchStartupRuntimeModule.js +0 -52
  2717. package/examples/node_modules/webpack/lib/prefetch/ChunkPrefetchTriggerRuntimeModule.js +0 -49
  2718. package/examples/node_modules/webpack/lib/prefetch/ChunkPreloadTriggerRuntimeModule.js +0 -43
  2719. package/examples/node_modules/webpack/lib/rules/BasicEffectRulePlugin.js +0 -39
  2720. package/examples/node_modules/webpack/lib/rules/BasicMatcherRulePlugin.js +0 -47
  2721. package/examples/node_modules/webpack/lib/rules/ObjectMatcherRulePlugin.js +0 -47
  2722. package/examples/node_modules/webpack/lib/rules/RuleSetCompiler.js +0 -379
  2723. package/examples/node_modules/webpack/lib/rules/UseEffectRulePlugin.js +0 -194
  2724. package/examples/node_modules/webpack/lib/runtime/AsyncModuleRuntimeModule.js +0 -156
  2725. package/examples/node_modules/webpack/lib/runtime/AutoPublicPathRuntimeModule.js +0 -69
  2726. package/examples/node_modules/webpack/lib/runtime/ChunkNameRuntimeModule.js +0 -27
  2727. package/examples/node_modules/webpack/lib/runtime/CompatGetDefaultExportRuntimeModule.js +0 -37
  2728. package/examples/node_modules/webpack/lib/runtime/CompatRuntimeModule.js +0 -78
  2729. package/examples/node_modules/webpack/lib/runtime/CreateFakeNamespaceObjectRuntimeModule.js +0 -66
  2730. package/examples/node_modules/webpack/lib/runtime/CreateScriptRuntimeModule.js +0 -36
  2731. package/examples/node_modules/webpack/lib/runtime/CreateScriptUrlRuntimeModule.js +0 -36
  2732. package/examples/node_modules/webpack/lib/runtime/DefinePropertyGettersRuntimeModule.js +0 -39
  2733. package/examples/node_modules/webpack/lib/runtime/EnsureChunkRuntimeModule.js +0 -54
  2734. package/examples/node_modules/webpack/lib/runtime/GetChunkFilenameRuntimeModule.js +0 -282
  2735. package/examples/node_modules/webpack/lib/runtime/GetFullHashRuntimeModule.js +0 -29
  2736. package/examples/node_modules/webpack/lib/runtime/GetMainFilenameRuntimeModule.js +0 -44
  2737. package/examples/node_modules/webpack/lib/runtime/GetTrustedTypesPolicyRuntimeModule.js +0 -76
  2738. package/examples/node_modules/webpack/lib/runtime/GlobalRuntimeModule.js +0 -47
  2739. package/examples/node_modules/webpack/lib/runtime/HasOwnPropertyRuntimeModule.js +0 -32
  2740. package/examples/node_modules/webpack/lib/runtime/HelperRuntimeModule.js +0 -18
  2741. package/examples/node_modules/webpack/lib/runtime/LoadScriptRuntimeModule.js +0 -158
  2742. package/examples/node_modules/webpack/lib/runtime/MakeNamespaceObjectRuntimeModule.js +0 -36
  2743. package/examples/node_modules/webpack/lib/runtime/OnChunksLoadedRuntimeModule.js +0 -76
  2744. package/examples/node_modules/webpack/lib/runtime/PublicPathRuntimeModule.js +0 -30
  2745. package/examples/node_modules/webpack/lib/runtime/RelativeUrlRuntimeModule.js +0 -41
  2746. package/examples/node_modules/webpack/lib/runtime/RuntimeIdRuntimeModule.js +0 -28
  2747. package/examples/node_modules/webpack/lib/runtime/StartupChunkDependenciesPlugin.js +0 -74
  2748. package/examples/node_modules/webpack/lib/runtime/StartupChunkDependenciesRuntimeModule.js +0 -67
  2749. package/examples/node_modules/webpack/lib/runtime/StartupEntrypointRuntimeModule.js +0 -50
  2750. package/examples/node_modules/webpack/lib/runtime/SystemContextRuntimeModule.js +0 -25
  2751. package/examples/node_modules/webpack/lib/schemes/DataUriPlugin.js +0 -56
  2752. package/examples/node_modules/webpack/lib/schemes/FileUriPlugin.js +0 -49
  2753. package/examples/node_modules/webpack/lib/schemes/HttpUriPlugin.js +0 -1118
  2754. package/examples/node_modules/webpack/lib/serialization/ArraySerializer.js +0 -22
  2755. package/examples/node_modules/webpack/lib/serialization/BinaryMiddleware.js +0 -950
  2756. package/examples/node_modules/webpack/lib/serialization/DateObjectSerializer.js +0 -16
  2757. package/examples/node_modules/webpack/lib/serialization/ErrorObjectSerializer.js +0 -27
  2758. package/examples/node_modules/webpack/lib/serialization/FileMiddleware.js +0 -665
  2759. package/examples/node_modules/webpack/lib/serialization/MapObjectSerializer.js +0 -31
  2760. package/examples/node_modules/webpack/lib/serialization/NullPrototypeObjectSerializer.js +0 -33
  2761. package/examples/node_modules/webpack/lib/serialization/ObjectMiddleware.js +0 -734
  2762. package/examples/node_modules/webpack/lib/serialization/PlainObjectSerializer.js +0 -80
  2763. package/examples/node_modules/webpack/lib/serialization/RegExpObjectSerializer.js +0 -17
  2764. package/examples/node_modules/webpack/lib/serialization/Serializer.js +0 -46
  2765. package/examples/node_modules/webpack/lib/serialization/SerializerMiddleware.js +0 -153
  2766. package/examples/node_modules/webpack/lib/serialization/SetObjectSerializer.js +0 -24
  2767. package/examples/node_modules/webpack/lib/serialization/SingleItemMiddleware.js +0 -34
  2768. package/examples/node_modules/webpack/lib/serialization/types.js +0 -13
  2769. package/examples/node_modules/webpack/lib/sharing/ConsumeSharedFallbackDependency.js +0 -30
  2770. package/examples/node_modules/webpack/lib/sharing/ConsumeSharedModule.js +0 -251
  2771. package/examples/node_modules/webpack/lib/sharing/ConsumeSharedPlugin.js +0 -319
  2772. package/examples/node_modules/webpack/lib/sharing/ConsumeSharedRuntimeModule.js +0 -360
  2773. package/examples/node_modules/webpack/lib/sharing/ProvideForSharedDependency.js +0 -34
  2774. package/examples/node_modules/webpack/lib/sharing/ProvideSharedDependency.js +0 -63
  2775. package/examples/node_modules/webpack/lib/sharing/ProvideSharedModule.js +0 -184
  2776. package/examples/node_modules/webpack/lib/sharing/ProvideSharedModuleFactory.js +0 -35
  2777. package/examples/node_modules/webpack/lib/sharing/ProvideSharedPlugin.js +0 -237
  2778. package/examples/node_modules/webpack/lib/sharing/SharePlugin.js +0 -92
  2779. package/examples/node_modules/webpack/lib/sharing/ShareRuntimeModule.js +0 -141
  2780. package/examples/node_modules/webpack/lib/sharing/resolveMatchedConfigs.js +0 -91
  2781. package/examples/node_modules/webpack/lib/sharing/utils.js +0 -90
  2782. package/examples/node_modules/webpack/lib/stats/DefaultStatsFactoryPlugin.js +0 -2398
  2783. package/examples/node_modules/webpack/lib/stats/DefaultStatsPresetPlugin.js +0 -326
  2784. package/examples/node_modules/webpack/lib/stats/DefaultStatsPrinterPlugin.js +0 -1380
  2785. package/examples/node_modules/webpack/lib/stats/StatsFactory.js +0 -292
  2786. package/examples/node_modules/webpack/lib/stats/StatsPrinter.js +0 -249
  2787. package/examples/node_modules/webpack/lib/util/ArrayHelpers.js +0 -44
  2788. package/examples/node_modules/webpack/lib/util/ArrayQueue.js +0 -111
  2789. package/examples/node_modules/webpack/lib/util/AsyncQueue.js +0 -373
  2790. package/examples/node_modules/webpack/lib/util/Hash.js +0 -35
  2791. package/examples/node_modules/webpack/lib/util/IterableHelpers.js +0 -46
  2792. package/examples/node_modules/webpack/lib/util/LazyBucketSortedSet.js +0 -236
  2793. package/examples/node_modules/webpack/lib/util/LazySet.js +0 -208
  2794. package/examples/node_modules/webpack/lib/util/MapHelpers.js +0 -22
  2795. package/examples/node_modules/webpack/lib/util/ParallelismFactorCalculator.js +0 -59
  2796. package/examples/node_modules/webpack/lib/util/Queue.js +0 -51
  2797. package/examples/node_modules/webpack/lib/util/Semaphore.js +0 -54
  2798. package/examples/node_modules/webpack/lib/util/SetHelpers.js +0 -94
  2799. package/examples/node_modules/webpack/lib/util/SortableSet.js +0 -160
  2800. package/examples/node_modules/webpack/lib/util/StackedCacheMap.js +0 -110
  2801. package/examples/node_modules/webpack/lib/util/StackedMap.js +0 -166
  2802. package/examples/node_modules/webpack/lib/util/StringXor.js +0 -55
  2803. package/examples/node_modules/webpack/lib/util/TupleQueue.js +0 -61
  2804. package/examples/node_modules/webpack/lib/util/TupleSet.js +0 -150
  2805. package/examples/node_modules/webpack/lib/util/URLAbsoluteSpecifier.js +0 -87
  2806. package/examples/node_modules/webpack/lib/util/WeakTupleMap.js +0 -171
  2807. package/examples/node_modules/webpack/lib/util/binarySearchBounds.js +0 -86
  2808. package/examples/node_modules/webpack/lib/util/cleverMerge.js +0 -568
  2809. package/examples/node_modules/webpack/lib/util/comparators.js +0 -459
  2810. package/examples/node_modules/webpack/lib/util/compileBooleanMatcher.js +0 -206
  2811. package/examples/node_modules/webpack/lib/util/create-schema-validation.js +0 -28
  2812. package/examples/node_modules/webpack/lib/util/createHash.js +0 -171
  2813. package/examples/node_modules/webpack/lib/util/deprecation.js +0 -264
  2814. package/examples/node_modules/webpack/lib/util/deterministicGrouping.js +0 -508
  2815. package/examples/node_modules/webpack/lib/util/extractUrlAndGlobal.js +0 -18
  2816. package/examples/node_modules/webpack/lib/util/findGraphRoots.js +0 -229
  2817. package/examples/node_modules/webpack/lib/util/fs.js +0 -337
  2818. package/examples/node_modules/webpack/lib/util/hash/BatchedHash.js +0 -68
  2819. package/examples/node_modules/webpack/lib/util/hash/md4.js +0 -20
  2820. package/examples/node_modules/webpack/lib/util/hash/wasm-hash.js +0 -163
  2821. package/examples/node_modules/webpack/lib/util/hash/xxhash64.js +0 -20
  2822. package/examples/node_modules/webpack/lib/util/identifier.js +0 -377
  2823. package/examples/node_modules/webpack/lib/util/internalSerializables.js +0 -211
  2824. package/examples/node_modules/webpack/lib/util/makeSerializable.js +0 -30
  2825. package/examples/node_modules/webpack/lib/util/memoize.js +0 -32
  2826. package/examples/node_modules/webpack/lib/util/nonNumericOnlyHash.js +0 -22
  2827. package/examples/node_modules/webpack/lib/util/numberHash.js +0 -45
  2828. package/examples/node_modules/webpack/lib/util/objectToMap.js +0 -15
  2829. package/examples/node_modules/webpack/lib/util/processAsyncTree.js +0 -62
  2830. package/examples/node_modules/webpack/lib/util/propertyAccess.js +0 -78
  2831. package/examples/node_modules/webpack/lib/util/registerExternalSerializer.js +0 -337
  2832. package/examples/node_modules/webpack/lib/util/runtime.js +0 -623
  2833. package/examples/node_modules/webpack/lib/util/semver.js +0 -484
  2834. package/examples/node_modules/webpack/lib/util/serialization.js +0 -128
  2835. package/examples/node_modules/webpack/lib/util/smartGrouping.js +0 -206
  2836. package/examples/node_modules/webpack/lib/util/source.js +0 -61
  2837. package/examples/node_modules/webpack/lib/validateSchema.js +0 -175
  2838. package/examples/node_modules/webpack/lib/wasm/EnableWasmLoadingPlugin.js +0 -118
  2839. package/examples/node_modules/webpack/lib/wasm-async/AsyncWasmLoadingRuntimeModule.js +0 -78
  2840. package/examples/node_modules/webpack/lib/wasm-async/AsyncWebAssemblyGenerator.js +0 -53
  2841. package/examples/node_modules/webpack/lib/wasm-async/AsyncWebAssemblyJavascriptGenerator.js +0 -194
  2842. package/examples/node_modules/webpack/lib/wasm-async/AsyncWebAssemblyModulesPlugin.js +0 -198
  2843. package/examples/node_modules/webpack/lib/wasm-async/AsyncWebAssemblyParser.js +0 -75
  2844. package/examples/node_modules/webpack/lib/wasm-sync/UnsupportedWebAssemblyFeatureError.js +0 -16
  2845. package/examples/node_modules/webpack/lib/wasm-sync/WasmChunkLoadingRuntimeModule.js +0 -372
  2846. package/examples/node_modules/webpack/lib/wasm-sync/WasmFinalizeExportsPlugin.js +0 -82
  2847. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyGenerator.js +0 -501
  2848. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyInInitialChunkError.js +0 -106
  2849. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyJavascriptGenerator.js +0 -216
  2850. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyModulesPlugin.js +0 -142
  2851. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyParser.js +0 -192
  2852. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyUtils.js +0 -65
  2853. package/examples/node_modules/webpack/lib/web/FetchCompileAsyncWasmPlugin.js +0 -62
  2854. package/examples/node_modules/webpack/lib/web/FetchCompileWasmPlugin.js +0 -71
  2855. package/examples/node_modules/webpack/lib/web/JsonpChunkLoadingPlugin.js +0 -91
  2856. package/examples/node_modules/webpack/lib/web/JsonpChunkLoadingRuntimeModule.js +0 -450
  2857. package/examples/node_modules/webpack/lib/web/JsonpTemplatePlugin.js +0 -38
  2858. package/examples/node_modules/webpack/lib/webpack.js +0 -171
  2859. package/examples/node_modules/webpack/lib/webworker/ImportScriptsChunkLoadingPlugin.js +0 -94
  2860. package/examples/node_modules/webpack/lib/webworker/ImportScriptsChunkLoadingRuntimeModule.js +0 -238
  2861. package/examples/node_modules/webpack/lib/webworker/WebWorkerTemplatePlugin.js +0 -25
  2862. package/examples/node_modules/webpack/module.d.ts +0 -215
  2863. package/examples/node_modules/webpack/package.json +0 -242
  2864. package/examples/node_modules/webpack/schemas/WebpackOptions.check.d.ts +0 -7
  2865. package/examples/node_modules/webpack/schemas/WebpackOptions.check.js +0 -6
  2866. package/examples/node_modules/webpack/schemas/WebpackOptions.json +0 -5321
  2867. package/examples/node_modules/webpack/schemas/_container.json +0 -155
  2868. package/examples/node_modules/webpack/schemas/_sharing.json +0 -118
  2869. package/examples/node_modules/webpack/schemas/plugins/BannerPlugin.check.d.ts +0 -7
  2870. package/examples/node_modules/webpack/schemas/plugins/BannerPlugin.check.js +0 -6
  2871. package/examples/node_modules/webpack/schemas/plugins/BannerPlugin.json +0 -103
  2872. package/examples/node_modules/webpack/schemas/plugins/DllPlugin.check.d.ts +0 -7
  2873. package/examples/node_modules/webpack/schemas/plugins/DllPlugin.check.js +0 -6
  2874. package/examples/node_modules/webpack/schemas/plugins/DllPlugin.json +0 -36
  2875. package/examples/node_modules/webpack/schemas/plugins/DllReferencePlugin.check.d.ts +0 -7
  2876. package/examples/node_modules/webpack/schemas/plugins/DllReferencePlugin.check.js +0 -6
  2877. package/examples/node_modules/webpack/schemas/plugins/DllReferencePlugin.json +0 -206
  2878. package/examples/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.check.d.ts +0 -7
  2879. package/examples/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.check.js +0 -6
  2880. package/examples/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.json +0 -44
  2881. package/examples/node_modules/webpack/schemas/plugins/IgnorePlugin.check.d.ts +0 -7
  2882. package/examples/node_modules/webpack/schemas/plugins/IgnorePlugin.check.js +0 -6
  2883. package/examples/node_modules/webpack/schemas/plugins/IgnorePlugin.json +0 -34
  2884. package/examples/node_modules/webpack/schemas/plugins/JsonModulesPluginParser.check.d.ts +0 -7
  2885. package/examples/node_modules/webpack/schemas/plugins/JsonModulesPluginParser.check.js +0 -6
  2886. package/examples/node_modules/webpack/schemas/plugins/JsonModulesPluginParser.json +0 -12
  2887. package/examples/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.check.d.ts +0 -7
  2888. package/examples/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.check.js +0 -6
  2889. package/examples/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.json +0 -27
  2890. package/examples/node_modules/webpack/schemas/plugins/ProgressPlugin.check.d.ts +0 -7
  2891. package/examples/node_modules/webpack/schemas/plugins/ProgressPlugin.check.js +0 -6
  2892. package/examples/node_modules/webpack/schemas/plugins/ProgressPlugin.json +0 -65
  2893. package/examples/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.check.d.ts +0 -7
  2894. package/examples/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.check.js +0 -6
  2895. package/examples/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.json +0 -143
  2896. package/examples/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.check.d.ts +0 -7
  2897. package/examples/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.check.js +0 -6
  2898. package/examples/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json +0 -25
  2899. package/examples/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.check.d.ts +0 -7
  2900. package/examples/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.check.js +0 -6
  2901. package/examples/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.json +0 -3
  2902. package/examples/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.check.d.ts +0 -7
  2903. package/examples/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.check.js +0 -6
  2904. package/examples/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.json +0 -3
  2905. package/examples/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.check.d.ts +0 -7
  2906. package/examples/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.check.js +0 -6
  2907. package/examples/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.json +0 -3
  2908. package/examples/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.check.d.ts +0 -7
  2909. package/examples/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.check.js +0 -6
  2910. package/examples/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.json +0 -3
  2911. package/examples/node_modules/webpack/schemas/plugins/container/ContainerPlugin.check.d.ts +0 -7
  2912. package/examples/node_modules/webpack/schemas/plugins/container/ContainerPlugin.check.js +0 -6
  2913. package/examples/node_modules/webpack/schemas/plugins/container/ContainerPlugin.json +0 -286
  2914. package/examples/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.check.d.ts +0 -7
  2915. package/examples/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.check.js +0 -6
  2916. package/examples/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.json +0 -128
  2917. package/examples/node_modules/webpack/schemas/plugins/container/ExternalsType.check.d.ts +0 -7
  2918. package/examples/node_modules/webpack/schemas/plugins/container/ExternalsType.check.js +0 -6
  2919. package/examples/node_modules/webpack/schemas/plugins/container/ExternalsType.json +0 -3
  2920. package/examples/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.check.d.ts +0 -7
  2921. package/examples/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.check.js +0 -6
  2922. package/examples/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.json +0 -513
  2923. package/examples/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.check.d.ts +0 -7
  2924. package/examples/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.check.js +0 -6
  2925. package/examples/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.json +0 -3
  2926. package/examples/node_modules/webpack/schemas/plugins/css/CssParserOptions.check.d.ts +0 -7
  2927. package/examples/node_modules/webpack/schemas/plugins/css/CssParserOptions.check.js +0 -6
  2928. package/examples/node_modules/webpack/schemas/plugins/css/CssParserOptions.json +0 -3
  2929. package/examples/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.check.d.ts +0 -7
  2930. package/examples/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.check.js +0 -6
  2931. package/examples/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.json +0 -12
  2932. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.check.d.ts +0 -7
  2933. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.check.js +0 -6
  2934. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.json +0 -11
  2935. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.check.d.ts +0 -7
  2936. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.check.js +0 -6
  2937. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.json +0 -11
  2938. package/examples/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.check.d.ts +0 -7
  2939. package/examples/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.check.js +0 -6
  2940. package/examples/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.json +0 -23
  2941. package/examples/node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.check.d.ts +0 -7
  2942. package/examples/node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.check.js +0 -6
  2943. package/examples/node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.json +0 -21
  2944. package/examples/node_modules/webpack/schemas/plugins/optimize/MinChunkSizePlugin.check.d.ts +0 -7
  2945. package/examples/node_modules/webpack/schemas/plugins/optimize/MinChunkSizePlugin.check.js +0 -6
  2946. package/examples/node_modules/webpack/schemas/plugins/optimize/MinChunkSizePlugin.json +0 -20
  2947. package/examples/node_modules/webpack/schemas/plugins/schemes/HttpUriPlugin.check.d.ts +0 -7
  2948. package/examples/node_modules/webpack/schemas/plugins/schemes/HttpUriPlugin.check.js +0 -6
  2949. package/examples/node_modules/webpack/schemas/plugins/schemes/HttpUriPlugin.json +0 -74
  2950. package/examples/node_modules/webpack/schemas/plugins/sharing/ConsumeSharedPlugin.check.d.ts +0 -7
  2951. package/examples/node_modules/webpack/schemas/plugins/sharing/ConsumeSharedPlugin.check.js +0 -6
  2952. package/examples/node_modules/webpack/schemas/plugins/sharing/ConsumeSharedPlugin.json +0 -120
  2953. package/examples/node_modules/webpack/schemas/plugins/sharing/ProvideSharedPlugin.check.d.ts +0 -7
  2954. package/examples/node_modules/webpack/schemas/plugins/sharing/ProvideSharedPlugin.check.js +0 -6
  2955. package/examples/node_modules/webpack/schemas/plugins/sharing/ProvideSharedPlugin.json +0 -94
  2956. package/examples/node_modules/webpack/schemas/plugins/sharing/SharePlugin.check.d.ts +0 -7
  2957. package/examples/node_modules/webpack/schemas/plugins/sharing/SharePlugin.check.js +0 -6
  2958. package/examples/node_modules/webpack/schemas/plugins/sharing/SharePlugin.json +0 -133
  2959. package/examples/node_modules/webpack/types.d.ts +0 -13072
  2960. package/examples/node_modules/webpack-cli/README.md +0 -147
  2961. package/examples/node_modules/webpack-cli/bin/cli.js +0 -17
  2962. package/examples/node_modules/webpack-cli/lib/bootstrap.js +0 -15
  2963. package/examples/node_modules/webpack-cli/lib/index.js +0 -5
  2964. package/examples/node_modules/webpack-cli/lib/plugins/CLIPlugin.js +0 -132
  2965. package/examples/node_modules/webpack-cli/lib/utils/dynamic-import-loader.js +0 -13
  2966. package/examples/node_modules/webpack-cli/lib/webpack-cli.js +0 -2343
  2967. package/examples/node_modules/webpack-cli/node_modules/commander/CHANGELOG.md +0 -440
  2968. package/examples/node_modules/webpack-cli/node_modules/commander/LICENSE +0 -22
  2969. package/examples/node_modules/webpack-cli/node_modules/commander/Readme.md +0 -917
  2970. package/examples/node_modules/webpack-cli/node_modules/commander/esm.mjs +0 -4
  2971. package/examples/node_modules/webpack-cli/node_modules/commander/index.js +0 -2217
  2972. package/examples/node_modules/webpack-cli/node_modules/commander/package-support.json +0 -16
  2973. package/examples/node_modules/webpack-cli/node_modules/commander/package.json +0 -68
  2974. package/examples/node_modules/webpack-cli/node_modules/commander/typings/index.d.ts +0 -627
  2975. package/examples/node_modules/webpack-cli/package.json +0 -63
  2976. package/examples/node_modules/webpack-merge/CHANGELOG.md +0 -426
  2977. package/examples/node_modules/webpack-merge/LICENSE +0 -20
  2978. package/examples/node_modules/webpack-merge/README.md +0 -314
  2979. package/examples/node_modules/webpack-merge/dist/index.d.ts +0 -15
  2980. package/examples/node_modules/webpack-merge/dist/index.js +0 -263
  2981. package/examples/node_modules/webpack-merge/dist/index.js.map +0 -1
  2982. package/examples/node_modules/webpack-merge/dist/join-arrays.d.ts +0 -6
  2983. package/examples/node_modules/webpack-merge/dist/join-arrays.js +0 -70
  2984. package/examples/node_modules/webpack-merge/dist/join-arrays.js.map +0 -1
  2985. package/examples/node_modules/webpack-merge/dist/merge-with.d.ts +0 -2
  2986. package/examples/node_modules/webpack-merge/dist/merge-with.js +0 -38
  2987. package/examples/node_modules/webpack-merge/dist/merge-with.js.map +0 -1
  2988. package/examples/node_modules/webpack-merge/dist/types.d.ts +0 -14
  2989. package/examples/node_modules/webpack-merge/dist/types.js +0 -12
  2990. package/examples/node_modules/webpack-merge/dist/types.js.map +0 -1
  2991. package/examples/node_modules/webpack-merge/dist/unique.d.ts +0 -2
  2992. package/examples/node_modules/webpack-merge/dist/unique.js +0 -41
  2993. package/examples/node_modules/webpack-merge/dist/unique.js.map +0 -1
  2994. package/examples/node_modules/webpack-merge/dist/utils.d.ts +0 -5
  2995. package/examples/node_modules/webpack-merge/dist/utils.js +0 -24
  2996. package/examples/node_modules/webpack-merge/dist/utils.js.map +0 -1
  2997. package/examples/node_modules/webpack-merge/package.json +0 -58
  2998. package/examples/node_modules/webpack-sources/LICENSE +0 -21
  2999. package/examples/node_modules/webpack-sources/README.md +0 -228
  3000. package/examples/node_modules/webpack-sources/lib/CachedSource.js +0 -274
  3001. package/examples/node_modules/webpack-sources/lib/CompatSource.js +0 -66
  3002. package/examples/node_modules/webpack-sources/lib/ConcatSource.js +0 -319
  3003. package/examples/node_modules/webpack-sources/lib/OriginalSource.js +0 -135
  3004. package/examples/node_modules/webpack-sources/lib/PrefixSource.js +0 -114
  3005. package/examples/node_modules/webpack-sources/lib/RawSource.js +0 -81
  3006. package/examples/node_modules/webpack-sources/lib/ReplaceSource.js +0 -467
  3007. package/examples/node_modules/webpack-sources/lib/SizeOnlySource.js +0 -42
  3008. package/examples/node_modules/webpack-sources/lib/Source.js +0 -38
  3009. package/examples/node_modules/webpack-sources/lib/SourceMapSource.js +0 -247
  3010. package/examples/node_modules/webpack-sources/lib/helpers/createMappingsSerializer.js +0 -206
  3011. package/examples/node_modules/webpack-sources/lib/helpers/getFromStreamChunks.js +0 -129
  3012. package/examples/node_modules/webpack-sources/lib/helpers/getGeneratedSourceInfo.js +0 -33
  3013. package/examples/node_modules/webpack-sources/lib/helpers/getName.js +0 -14
  3014. package/examples/node_modules/webpack-sources/lib/helpers/getSource.js +0 -17
  3015. package/examples/node_modules/webpack-sources/lib/helpers/readMappings.js +0 -116
  3016. package/examples/node_modules/webpack-sources/lib/helpers/splitIntoLines.js +0 -21
  3017. package/examples/node_modules/webpack-sources/lib/helpers/splitIntoPotentialTokens.js +0 -41
  3018. package/examples/node_modules/webpack-sources/lib/helpers/streamAndGetSourceAndMap.js +0 -102
  3019. package/examples/node_modules/webpack-sources/lib/helpers/streamChunks.js +0 -36
  3020. package/examples/node_modules/webpack-sources/lib/helpers/streamChunksOfCombinedSourceMap.js +0 -329
  3021. package/examples/node_modules/webpack-sources/lib/helpers/streamChunksOfRawSource.js +0 -34
  3022. package/examples/node_modules/webpack-sources/lib/helpers/streamChunksOfSourceMap.js +0 -412
  3023. package/examples/node_modules/webpack-sources/lib/index.js +0 -30
  3024. package/examples/node_modules/webpack-sources/package.json +0 -58
  3025. package/examples/node_modules/which/CHANGELOG.md +0 -166
  3026. package/examples/node_modules/which/LICENSE +0 -15
  3027. package/examples/node_modules/which/README.md +0 -54
  3028. package/examples/node_modules/which/bin/node-which +0 -52
  3029. package/examples/node_modules/which/package.json +0 -43
  3030. package/examples/node_modules/which/which.js +0 -125
  3031. package/examples/node_modules/wildcard/.travis.yml +0 -9
  3032. package/examples/node_modules/wildcard/README.md +0 -99
  3033. package/examples/node_modules/wildcard/docs.json +0 -9
  3034. package/examples/node_modules/wildcard/examples/arrays.js +0 -10
  3035. package/examples/node_modules/wildcard/examples/objects.js +0 -10
  3036. package/examples/node_modules/wildcard/examples/strings.js +0 -7
  3037. package/examples/node_modules/wildcard/index.js +0 -114
  3038. package/examples/node_modules/wildcard/package.json +0 -53
  3039. package/examples/node_modules/wildcard/test/all.js +0 -3
  3040. package/examples/node_modules/wildcard/test/arrays.js +0 -33
  3041. package/examples/node_modules/wildcard/test/objects.js +0 -106
  3042. package/examples/node_modules/wildcard/test/strings.js +0 -46
  3043. package/examples/node_modules/wildcard/yarn.lock +0 -228
@@ -1,3869 +0,0 @@
1
- /**
2
- * The `fs` module enables interacting with the file system in a
3
- * way modeled on standard POSIX functions.
4
- *
5
- * To use the promise-based APIs:
6
- *
7
- * ```js
8
- * import * as fs from 'fs/promises';
9
- * ```
10
- *
11
- * To use the callback and sync APIs:
12
- *
13
- * ```js
14
- * import * as fs from 'fs';
15
- * ```
16
- *
17
- * All file system operations have synchronous, callback, and promise-based
18
- * forms, and are accessible using both CommonJS syntax and ES6 Modules (ESM).
19
- * @see [source](https://github.com/nodejs/node/blob/v17.0.0/lib/fs.js)
20
- */
21
- declare module 'fs' {
22
- import * as stream from 'node:stream';
23
- import { Abortable, EventEmitter } from 'node:events';
24
- import { URL } from 'node:url';
25
- import * as promises from 'node:fs/promises';
26
- export { promises };
27
- /**
28
- * Valid types for path values in "fs".
29
- */
30
- export type PathLike = string | Buffer | URL;
31
- export type PathOrFileDescriptor = PathLike | number;
32
- export type TimeLike = string | number | Date;
33
- export type NoParamCallback = (err: NodeJS.ErrnoException | null) => void;
34
- export type BufferEncodingOption =
35
- | 'buffer'
36
- | {
37
- encoding: 'buffer';
38
- };
39
- export interface ObjectEncodingOptions {
40
- encoding?: BufferEncoding | null | undefined;
41
- }
42
- export type EncodingOption = ObjectEncodingOptions | BufferEncoding | undefined | null;
43
- export type OpenMode = number | string;
44
- export type Mode = number | string;
45
- export interface StatsBase<T> {
46
- isFile(): boolean;
47
- isDirectory(): boolean;
48
- isBlockDevice(): boolean;
49
- isCharacterDevice(): boolean;
50
- isSymbolicLink(): boolean;
51
- isFIFO(): boolean;
52
- isSocket(): boolean;
53
- dev: T;
54
- ino: T;
55
- mode: T;
56
- nlink: T;
57
- uid: T;
58
- gid: T;
59
- rdev: T;
60
- size: T;
61
- blksize: T;
62
- blocks: T;
63
- atimeMs: T;
64
- mtimeMs: T;
65
- ctimeMs: T;
66
- birthtimeMs: T;
67
- atime: Date;
68
- mtime: Date;
69
- ctime: Date;
70
- birthtime: Date;
71
- }
72
- export interface Stats extends StatsBase<number> {}
73
- /**
74
- * A `fs.Stats` object provides information about a file.
75
- *
76
- * Objects returned from {@link stat}, {@link lstat} and {@link fstat} and
77
- * their synchronous counterparts are of this type.
78
- * If `bigint` in the `options` passed to those methods is true, the numeric values
79
- * will be `bigint` instead of `number`, and the object will contain additional
80
- * nanosecond-precision properties suffixed with `Ns`.
81
- *
82
- * ```console
83
- * Stats {
84
- * dev: 2114,
85
- * ino: 48064969,
86
- * mode: 33188,
87
- * nlink: 1,
88
- * uid: 85,
89
- * gid: 100,
90
- * rdev: 0,
91
- * size: 527,
92
- * blksize: 4096,
93
- * blocks: 8,
94
- * atimeMs: 1318289051000.1,
95
- * mtimeMs: 1318289051000.1,
96
- * ctimeMs: 1318289051000.1,
97
- * birthtimeMs: 1318289051000.1,
98
- * atime: Mon, 10 Oct 2011 23:24:11 GMT,
99
- * mtime: Mon, 10 Oct 2011 23:24:11 GMT,
100
- * ctime: Mon, 10 Oct 2011 23:24:11 GMT,
101
- * birthtime: Mon, 10 Oct 2011 23:24:11 GMT }
102
- * ```
103
- *
104
- * `bigint` version:
105
- *
106
- * ```console
107
- * BigIntStats {
108
- * dev: 2114n,
109
- * ino: 48064969n,
110
- * mode: 33188n,
111
- * nlink: 1n,
112
- * uid: 85n,
113
- * gid: 100n,
114
- * rdev: 0n,
115
- * size: 527n,
116
- * blksize: 4096n,
117
- * blocks: 8n,
118
- * atimeMs: 1318289051000n,
119
- * mtimeMs: 1318289051000n,
120
- * ctimeMs: 1318289051000n,
121
- * birthtimeMs: 1318289051000n,
122
- * atimeNs: 1318289051000000000n,
123
- * mtimeNs: 1318289051000000000n,
124
- * ctimeNs: 1318289051000000000n,
125
- * birthtimeNs: 1318289051000000000n,
126
- * atime: Mon, 10 Oct 2011 23:24:11 GMT,
127
- * mtime: Mon, 10 Oct 2011 23:24:11 GMT,
128
- * ctime: Mon, 10 Oct 2011 23:24:11 GMT,
129
- * birthtime: Mon, 10 Oct 2011 23:24:11 GMT }
130
- * ```
131
- * @since v0.1.21
132
- */
133
- export class Stats {}
134
- /**
135
- * A representation of a directory entry, which can be a file or a subdirectory
136
- * within the directory, as returned by reading from an `fs.Dir`. The
137
- * directory entry is a combination of the file name and file type pairs.
138
- *
139
- * Additionally, when {@link readdir} or {@link readdirSync} is called with
140
- * the `withFileTypes` option set to `true`, the resulting array is filled with `fs.Dirent` objects, rather than strings or `Buffer` s.
141
- * @since v10.10.0
142
- */
143
- export class Dirent {
144
- /**
145
- * Returns `true` if the `fs.Dirent` object describes a regular file.
146
- * @since v10.10.0
147
- */
148
- isFile(): boolean;
149
- /**
150
- * Returns `true` if the `fs.Dirent` object describes a file system
151
- * directory.
152
- * @since v10.10.0
153
- */
154
- isDirectory(): boolean;
155
- /**
156
- * Returns `true` if the `fs.Dirent` object describes a block device.
157
- * @since v10.10.0
158
- */
159
- isBlockDevice(): boolean;
160
- /**
161
- * Returns `true` if the `fs.Dirent` object describes a character device.
162
- * @since v10.10.0
163
- */
164
- isCharacterDevice(): boolean;
165
- /**
166
- * Returns `true` if the `fs.Dirent` object describes a symbolic link.
167
- * @since v10.10.0
168
- */
169
- isSymbolicLink(): boolean;
170
- /**
171
- * Returns `true` if the `fs.Dirent` object describes a first-in-first-out
172
- * (FIFO) pipe.
173
- * @since v10.10.0
174
- */
175
- isFIFO(): boolean;
176
- /**
177
- * Returns `true` if the `fs.Dirent` object describes a socket.
178
- * @since v10.10.0
179
- */
180
- isSocket(): boolean;
181
- /**
182
- * The file name that this `fs.Dirent` object refers to. The type of this
183
- * value is determined by the `options.encoding` passed to {@link readdir} or {@link readdirSync}.
184
- * @since v10.10.0
185
- */
186
- name: string;
187
- }
188
- /**
189
- * A class representing a directory stream.
190
- *
191
- * Created by {@link opendir}, {@link opendirSync}, or `fsPromises.opendir()`.
192
- *
193
- * ```js
194
- * import { opendir } from 'fs/promises';
195
- *
196
- * try {
197
- * const dir = await opendir('./');
198
- * for await (const dirent of dir)
199
- * console.log(dirent.name);
200
- * } catch (err) {
201
- * console.error(err);
202
- * }
203
- * ```
204
- *
205
- * When using the async iterator, the `fs.Dir` object will be automatically
206
- * closed after the iterator exits.
207
- * @since v12.12.0
208
- */
209
- export class Dir implements AsyncIterable<Dirent> {
210
- /**
211
- * The read-only path of this directory as was provided to {@link opendir},{@link opendirSync}, or `fsPromises.opendir()`.
212
- * @since v12.12.0
213
- */
214
- readonly path: string;
215
- /**
216
- * Asynchronously iterates over the directory via `readdir(3)` until all entries have been read.
217
- */
218
- [Symbol.asyncIterator](): AsyncIterableIterator<Dirent>;
219
- /**
220
- * Asynchronously close the directory's underlying resource handle.
221
- * Subsequent reads will result in errors.
222
- *
223
- * A promise is returned that will be resolved after the resource has been
224
- * closed.
225
- * @since v12.12.0
226
- */
227
- close(): Promise<void>;
228
- close(cb: NoParamCallback): void;
229
- /**
230
- * Synchronously close the directory's underlying resource handle.
231
- * Subsequent reads will result in errors.
232
- * @since v12.12.0
233
- */
234
- closeSync(): void;
235
- /**
236
- * Asynchronously read the next directory entry via [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) as an `fs.Dirent`.
237
- *
238
- * A promise is returned that will be resolved with an `fs.Dirent`, or `null`if there are no more directory entries to read.
239
- *
240
- * Directory entries returned by this function are in no particular order as
241
- * provided by the operating system's underlying directory mechanisms.
242
- * Entries added or removed while iterating over the directory might not be
243
- * included in the iteration results.
244
- * @since v12.12.0
245
- * @return containing {fs.Dirent|null}
246
- */
247
- read(): Promise<Dirent | null>;
248
- read(cb: (err: NodeJS.ErrnoException | null, dirEnt: Dirent | null) => void): void;
249
- /**
250
- * Synchronously read the next directory entry as an `fs.Dirent`. See the
251
- * POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more detail.
252
- *
253
- * If there are no more directory entries to read, `null` will be returned.
254
- *
255
- * Directory entries returned by this function are in no particular order as
256
- * provided by the operating system's underlying directory mechanisms.
257
- * Entries added or removed while iterating over the directory might not be
258
- * included in the iteration results.
259
- * @since v12.12.0
260
- */
261
- readSync(): Dirent | null;
262
- }
263
- /**
264
- * Class: fs.StatWatcher
265
- * @since v14.3.0, v12.20.0
266
- * Extends `EventEmitter`
267
- * A successful call to {@link watchFile} method will return a new fs.StatWatcher object.
268
- */
269
- export interface StatWatcher extends EventEmitter {
270
- /**
271
- * When called, requests that the Node.js event loop _not_ exit so long as the `fs.StatWatcher` is active. Calling `watcher.ref()` multiple times will have
272
- * no effect.
273
- *
274
- * By default, all `fs.StatWatcher` objects are "ref'ed", making it normally
275
- * unnecessary to call `watcher.ref()` unless `watcher.unref()` had been
276
- * called previously.
277
- * @since v14.3.0, v12.20.0
278
- */
279
- ref(): this;
280
- /**
281
- * When called, the active `fs.StatWatcher` object will not require the Node.js
282
- * event loop to remain active. If there is no other activity keeping the
283
- * event loop running, the process may exit before the `fs.StatWatcher` object's
284
- * callback is invoked. Calling `watcher.unref()` multiple times will have
285
- * no effect.
286
- * @since v14.3.0, v12.20.0
287
- */
288
- unref(): this;
289
- }
290
- export interface FSWatcher extends EventEmitter {
291
- /**
292
- * Stop watching for changes on the given `fs.FSWatcher`. Once stopped, the `fs.FSWatcher` object is no longer usable.
293
- * @since v0.5.8
294
- */
295
- close(): void;
296
- /**
297
- * events.EventEmitter
298
- * 1. change
299
- * 2. error
300
- */
301
- addListener(event: string, listener: (...args: any[]) => void): this;
302
- addListener(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this;
303
- addListener(event: 'error', listener: (error: Error) => void): this;
304
- addListener(event: 'close', listener: () => void): this;
305
- on(event: string, listener: (...args: any[]) => void): this;
306
- on(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this;
307
- on(event: 'error', listener: (error: Error) => void): this;
308
- on(event: 'close', listener: () => void): this;
309
- once(event: string, listener: (...args: any[]) => void): this;
310
- once(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this;
311
- once(event: 'error', listener: (error: Error) => void): this;
312
- once(event: 'close', listener: () => void): this;
313
- prependListener(event: string, listener: (...args: any[]) => void): this;
314
- prependListener(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this;
315
- prependListener(event: 'error', listener: (error: Error) => void): this;
316
- prependListener(event: 'close', listener: () => void): this;
317
- prependOnceListener(event: string, listener: (...args: any[]) => void): this;
318
- prependOnceListener(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this;
319
- prependOnceListener(event: 'error', listener: (error: Error) => void): this;
320
- prependOnceListener(event: 'close', listener: () => void): this;
321
- }
322
- /**
323
- * Instances of `fs.ReadStream` are created and returned using the {@link createReadStream} function.
324
- * @since v0.1.93
325
- */
326
- export class ReadStream extends stream.Readable {
327
- close(callback?: (err?: NodeJS.ErrnoException | null) => void): void;
328
- /**
329
- * The number of bytes that have been read so far.
330
- * @since v6.4.0
331
- */
332
- bytesRead: number;
333
- /**
334
- * The path to the file the stream is reading from as specified in the first
335
- * argument to `fs.createReadStream()`. If `path` is passed as a string, then`readStream.path` will be a string. If `path` is passed as a `Buffer`, then`readStream.path` will be a
336
- * `Buffer`. If `fd` is specified, then`readStream.path` will be `undefined`.
337
- * @since v0.1.93
338
- */
339
- path: string | Buffer;
340
- /**
341
- * This property is `true` if the underlying file has not been opened yet,
342
- * i.e. before the `'ready'` event is emitted.
343
- * @since v11.2.0, v10.16.0
344
- */
345
- pending: boolean;
346
- /**
347
- * events.EventEmitter
348
- * 1. open
349
- * 2. close
350
- * 3. ready
351
- */
352
- addListener(event: 'close', listener: () => void): this;
353
- addListener(event: 'data', listener: (chunk: Buffer | string) => void): this;
354
- addListener(event: 'end', listener: () => void): this;
355
- addListener(event: 'error', listener: (err: Error) => void): this;
356
- addListener(event: 'open', listener: (fd: number) => void): this;
357
- addListener(event: 'pause', listener: () => void): this;
358
- addListener(event: 'readable', listener: () => void): this;
359
- addListener(event: 'ready', listener: () => void): this;
360
- addListener(event: 'resume', listener: () => void): this;
361
- addListener(event: string | symbol, listener: (...args: any[]) => void): this;
362
- on(event: 'close', listener: () => void): this;
363
- on(event: 'data', listener: (chunk: Buffer | string) => void): this;
364
- on(event: 'end', listener: () => void): this;
365
- on(event: 'error', listener: (err: Error) => void): this;
366
- on(event: 'open', listener: (fd: number) => void): this;
367
- on(event: 'pause', listener: () => void): this;
368
- on(event: 'readable', listener: () => void): this;
369
- on(event: 'ready', listener: () => void): this;
370
- on(event: 'resume', listener: () => void): this;
371
- on(event: string | symbol, listener: (...args: any[]) => void): this;
372
- once(event: 'close', listener: () => void): this;
373
- once(event: 'data', listener: (chunk: Buffer | string) => void): this;
374
- once(event: 'end', listener: () => void): this;
375
- once(event: 'error', listener: (err: Error) => void): this;
376
- once(event: 'open', listener: (fd: number) => void): this;
377
- once(event: 'pause', listener: () => void): this;
378
- once(event: 'readable', listener: () => void): this;
379
- once(event: 'ready', listener: () => void): this;
380
- once(event: 'resume', listener: () => void): this;
381
- once(event: string | symbol, listener: (...args: any[]) => void): this;
382
- prependListener(event: 'close', listener: () => void): this;
383
- prependListener(event: 'data', listener: (chunk: Buffer | string) => void): this;
384
- prependListener(event: 'end', listener: () => void): this;
385
- prependListener(event: 'error', listener: (err: Error) => void): this;
386
- prependListener(event: 'open', listener: (fd: number) => void): this;
387
- prependListener(event: 'pause', listener: () => void): this;
388
- prependListener(event: 'readable', listener: () => void): this;
389
- prependListener(event: 'ready', listener: () => void): this;
390
- prependListener(event: 'resume', listener: () => void): this;
391
- prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
392
- prependOnceListener(event: 'close', listener: () => void): this;
393
- prependOnceListener(event: 'data', listener: (chunk: Buffer | string) => void): this;
394
- prependOnceListener(event: 'end', listener: () => void): this;
395
- prependOnceListener(event: 'error', listener: (err: Error) => void): this;
396
- prependOnceListener(event: 'open', listener: (fd: number) => void): this;
397
- prependOnceListener(event: 'pause', listener: () => void): this;
398
- prependOnceListener(event: 'readable', listener: () => void): this;
399
- prependOnceListener(event: 'ready', listener: () => void): this;
400
- prependOnceListener(event: 'resume', listener: () => void): this;
401
- prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
402
- }
403
- /**
404
- * * Extends `stream.Writable`
405
- *
406
- * Instances of `fs.WriteStream` are created and returned using the {@link createWriteStream} function.
407
- * @since v0.1.93
408
- */
409
- export class WriteStream extends stream.Writable {
410
- /**
411
- * Closes `writeStream`. Optionally accepts a
412
- * callback that will be executed once the `writeStream`is closed.
413
- * @since v0.9.4
414
- */
415
- close(callback?: (err?: NodeJS.ErrnoException | null) => void): void;
416
- /**
417
- * The number of bytes written so far. Does not include data that is still queued
418
- * for writing.
419
- * @since v0.4.7
420
- */
421
- bytesWritten: number;
422
- /**
423
- * The path to the file the stream is writing to as specified in the first
424
- * argument to {@link createWriteStream}. If `path` is passed as a string, then`writeStream.path` will be a string. If `path` is passed as a `Buffer`, then`writeStream.path` will be a
425
- * `Buffer`.
426
- * @since v0.1.93
427
- */
428
- path: string | Buffer;
429
- /**
430
- * This property is `true` if the underlying file has not been opened yet,
431
- * i.e. before the `'ready'` event is emitted.
432
- * @since v11.2.0
433
- */
434
- pending: boolean;
435
- /**
436
- * events.EventEmitter
437
- * 1. open
438
- * 2. close
439
- * 3. ready
440
- */
441
- addListener(event: 'close', listener: () => void): this;
442
- addListener(event: 'drain', listener: () => void): this;
443
- addListener(event: 'error', listener: (err: Error) => void): this;
444
- addListener(event: 'finish', listener: () => void): this;
445
- addListener(event: 'open', listener: (fd: number) => void): this;
446
- addListener(event: 'pipe', listener: (src: stream.Readable) => void): this;
447
- addListener(event: 'ready', listener: () => void): this;
448
- addListener(event: 'unpipe', listener: (src: stream.Readable) => void): this;
449
- addListener(event: string | symbol, listener: (...args: any[]) => void): this;
450
- on(event: 'close', listener: () => void): this;
451
- on(event: 'drain', listener: () => void): this;
452
- on(event: 'error', listener: (err: Error) => void): this;
453
- on(event: 'finish', listener: () => void): this;
454
- on(event: 'open', listener: (fd: number) => void): this;
455
- on(event: 'pipe', listener: (src: stream.Readable) => void): this;
456
- on(event: 'ready', listener: () => void): this;
457
- on(event: 'unpipe', listener: (src: stream.Readable) => void): this;
458
- on(event: string | symbol, listener: (...args: any[]) => void): this;
459
- once(event: 'close', listener: () => void): this;
460
- once(event: 'drain', listener: () => void): this;
461
- once(event: 'error', listener: (err: Error) => void): this;
462
- once(event: 'finish', listener: () => void): this;
463
- once(event: 'open', listener: (fd: number) => void): this;
464
- once(event: 'pipe', listener: (src: stream.Readable) => void): this;
465
- once(event: 'ready', listener: () => void): this;
466
- once(event: 'unpipe', listener: (src: stream.Readable) => void): this;
467
- once(event: string | symbol, listener: (...args: any[]) => void): this;
468
- prependListener(event: 'close', listener: () => void): this;
469
- prependListener(event: 'drain', listener: () => void): this;
470
- prependListener(event: 'error', listener: (err: Error) => void): this;
471
- prependListener(event: 'finish', listener: () => void): this;
472
- prependListener(event: 'open', listener: (fd: number) => void): this;
473
- prependListener(event: 'pipe', listener: (src: stream.Readable) => void): this;
474
- prependListener(event: 'ready', listener: () => void): this;
475
- prependListener(event: 'unpipe', listener: (src: stream.Readable) => void): this;
476
- prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
477
- prependOnceListener(event: 'close', listener: () => void): this;
478
- prependOnceListener(event: 'drain', listener: () => void): this;
479
- prependOnceListener(event: 'error', listener: (err: Error) => void): this;
480
- prependOnceListener(event: 'finish', listener: () => void): this;
481
- prependOnceListener(event: 'open', listener: (fd: number) => void): this;
482
- prependOnceListener(event: 'pipe', listener: (src: stream.Readable) => void): this;
483
- prependOnceListener(event: 'ready', listener: () => void): this;
484
- prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this;
485
- prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
486
- }
487
- /**
488
- * Asynchronously rename file at `oldPath` to the pathname provided
489
- * as `newPath`. In the case that `newPath` already exists, it will
490
- * be overwritten. If there is a directory at `newPath`, an error will
491
- * be raised instead. No arguments other than a possible exception are
492
- * given to the completion callback.
493
- *
494
- * See also: [`rename(2)`](http://man7.org/linux/man-pages/man2/rename.2.html).
495
- *
496
- * ```js
497
- * import { rename } from 'fs';
498
- *
499
- * rename('oldFile.txt', 'newFile.txt', (err) => {
500
- * if (err) throw err;
501
- * console.log('Rename complete!');
502
- * });
503
- * ```
504
- * @since v0.0.2
505
- */
506
- export function rename(oldPath: PathLike, newPath: PathLike, callback: NoParamCallback): void;
507
- export namespace rename {
508
- /**
509
- * Asynchronous rename(2) - Change the name or location of a file or directory.
510
- * @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol.
511
- * URL support is _experimental_.
512
- * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
513
- * URL support is _experimental_.
514
- */
515
- function __promisify__(oldPath: PathLike, newPath: PathLike): Promise<void>;
516
- }
517
- /**
518
- * Renames the file from `oldPath` to `newPath`. Returns `undefined`.
519
- *
520
- * See the POSIX [`rename(2)`](http://man7.org/linux/man-pages/man2/rename.2.html) documentation for more details.
521
- * @since v0.1.21
522
- */
523
- export function renameSync(oldPath: PathLike, newPath: PathLike): void;
524
- /**
525
- * Truncates the file. No arguments other than a possible exception are
526
- * given to the completion callback. A file descriptor can also be passed as the
527
- * first argument. In this case, `fs.ftruncate()` is called.
528
- *
529
- * ```js
530
- * import { truncate } from 'fs';
531
- * // Assuming that 'path/file.txt' is a regular file.
532
- * truncate('path/file.txt', (err) => {
533
- * if (err) throw err;
534
- * console.log('path/file.txt was truncated');
535
- * });
536
- * ```
537
- *
538
- * Passing a file descriptor is deprecated and may result in an error being thrown
539
- * in the future.
540
- *
541
- * See the POSIX [`truncate(2)`](http://man7.org/linux/man-pages/man2/truncate.2.html) documentation for more details.
542
- * @since v0.8.6
543
- * @param [len=0]
544
- */
545
- export function truncate(path: PathLike, len: number | undefined | null, callback: NoParamCallback): void;
546
- /**
547
- * Asynchronous truncate(2) - Truncate a file to a specified length.
548
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
549
- */
550
- export function truncate(path: PathLike, callback: NoParamCallback): void;
551
- export namespace truncate {
552
- /**
553
- * Asynchronous truncate(2) - Truncate a file to a specified length.
554
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
555
- * @param len If not specified, defaults to `0`.
556
- */
557
- function __promisify__(path: PathLike, len?: number | null): Promise<void>;
558
- }
559
- /**
560
- * Truncates the file. Returns `undefined`. A file descriptor can also be
561
- * passed as the first argument. In this case, `fs.ftruncateSync()` is called.
562
- *
563
- * Passing a file descriptor is deprecated and may result in an error being thrown
564
- * in the future.
565
- * @since v0.8.6
566
- * @param [len=0]
567
- */
568
- export function truncateSync(path: PathLike, len?: number | null): void;
569
- /**
570
- * Truncates the file descriptor. No arguments other than a possible exception are
571
- * given to the completion callback.
572
- *
573
- * See the POSIX [`ftruncate(2)`](http://man7.org/linux/man-pages/man2/ftruncate.2.html) documentation for more detail.
574
- *
575
- * If the file referred to by the file descriptor was larger than `len` bytes, only
576
- * the first `len` bytes will be retained in the file.
577
- *
578
- * For example, the following program retains only the first four bytes of the
579
- * file:
580
- *
581
- * ```js
582
- * import { open, close, ftruncate } from 'fs';
583
- *
584
- * function closeFd(fd) {
585
- * close(fd, (err) => {
586
- * if (err) throw err;
587
- * });
588
- * }
589
- *
590
- * open('temp.txt', 'r+', (err, fd) => {
591
- * if (err) throw err;
592
- *
593
- * try {
594
- * ftruncate(fd, 4, (err) => {
595
- * closeFd(fd);
596
- * if (err) throw err;
597
- * });
598
- * } catch (err) {
599
- * closeFd(fd);
600
- * if (err) throw err;
601
- * }
602
- * });
603
- * ```
604
- *
605
- * If the file previously was shorter than `len` bytes, it is extended, and the
606
- * extended part is filled with null bytes (`'\0'`):
607
- *
608
- * If `len` is negative then `0` will be used.
609
- * @since v0.8.6
610
- * @param [len=0]
611
- */
612
- export function ftruncate(fd: number, len: number | undefined | null, callback: NoParamCallback): void;
613
- /**
614
- * Asynchronous ftruncate(2) - Truncate a file to a specified length.
615
- * @param fd A file descriptor.
616
- */
617
- export function ftruncate(fd: number, callback: NoParamCallback): void;
618
- export namespace ftruncate {
619
- /**
620
- * Asynchronous ftruncate(2) - Truncate a file to a specified length.
621
- * @param fd A file descriptor.
622
- * @param len If not specified, defaults to `0`.
623
- */
624
- function __promisify__(fd: number, len?: number | null): Promise<void>;
625
- }
626
- /**
627
- * Truncates the file descriptor. Returns `undefined`.
628
- *
629
- * For detailed information, see the documentation of the asynchronous version of
630
- * this API: {@link ftruncate}.
631
- * @since v0.8.6
632
- * @param [len=0]
633
- */
634
- export function ftruncateSync(fd: number, len?: number | null): void;
635
- /**
636
- * Asynchronously changes owner and group of a file. No arguments other than a
637
- * possible exception are given to the completion callback.
638
- *
639
- * See the POSIX [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html) documentation for more detail.
640
- * @since v0.1.97
641
- */
642
- export function chown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void;
643
- export namespace chown {
644
- /**
645
- * Asynchronous chown(2) - Change ownership of a file.
646
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
647
- */
648
- function __promisify__(path: PathLike, uid: number, gid: number): Promise<void>;
649
- }
650
- /**
651
- * Synchronously changes owner and group of a file. Returns `undefined`.
652
- * This is the synchronous version of {@link chown}.
653
- *
654
- * See the POSIX [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html) documentation for more detail.
655
- * @since v0.1.97
656
- */
657
- export function chownSync(path: PathLike, uid: number, gid: number): void;
658
- /**
659
- * Sets the owner of the file. No arguments other than a possible exception are
660
- * given to the completion callback.
661
- *
662
- * See the POSIX [`fchown(2)`](http://man7.org/linux/man-pages/man2/fchown.2.html) documentation for more detail.
663
- * @since v0.4.7
664
- */
665
- export function fchown(fd: number, uid: number, gid: number, callback: NoParamCallback): void;
666
- export namespace fchown {
667
- /**
668
- * Asynchronous fchown(2) - Change ownership of a file.
669
- * @param fd A file descriptor.
670
- */
671
- function __promisify__(fd: number, uid: number, gid: number): Promise<void>;
672
- }
673
- /**
674
- * Sets the owner of the file. Returns `undefined`.
675
- *
676
- * See the POSIX [`fchown(2)`](http://man7.org/linux/man-pages/man2/fchown.2.html) documentation for more detail.
677
- * @since v0.4.7
678
- * @param uid The file's new owner's user id.
679
- * @param gid The file's new group's group id.
680
- */
681
- export function fchownSync(fd: number, uid: number, gid: number): void;
682
- /**
683
- * Set the owner of the symbolic link. No arguments other than a possible
684
- * exception are given to the completion callback.
685
- *
686
- * See the POSIX [`lchown(2)`](http://man7.org/linux/man-pages/man2/lchown.2.html) documentation for more detail.
687
- */
688
- export function lchown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void;
689
- export namespace lchown {
690
- /**
691
- * Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links.
692
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
693
- */
694
- function __promisify__(path: PathLike, uid: number, gid: number): Promise<void>;
695
- }
696
- /**
697
- * Set the owner for the path. Returns `undefined`.
698
- *
699
- * See the POSIX [`lchown(2)`](http://man7.org/linux/man-pages/man2/lchown.2.html) documentation for more details.
700
- * @param uid The file's new owner's user id.
701
- * @param gid The file's new group's group id.
702
- */
703
- export function lchownSync(path: PathLike, uid: number, gid: number): void;
704
- /**
705
- * Changes the access and modification times of a file in the same way as {@link utimes}, with the difference that if the path refers to a symbolic
706
- * link, then the link is not dereferenced: instead, the timestamps of the
707
- * symbolic link itself are changed.
708
- *
709
- * No arguments other than a possible exception are given to the completion
710
- * callback.
711
- * @since v14.5.0, v12.19.0
712
- */
713
- export function lutimes(path: PathLike, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void;
714
- export namespace lutimes {
715
- /**
716
- * Changes the access and modification times of a file in the same way as `fsPromises.utimes()`,
717
- * with the difference that if the path refers to a symbolic link, then the link is not
718
- * dereferenced: instead, the timestamps of the symbolic link itself are changed.
719
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
720
- * @param atime The last access time. If a string is provided, it will be coerced to number.
721
- * @param mtime The last modified time. If a string is provided, it will be coerced to number.
722
- */
723
- function __promisify__(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise<void>;
724
- }
725
- /**
726
- * Change the file system timestamps of the symbolic link referenced by `path`.
727
- * Returns `undefined`, or throws an exception when parameters are incorrect or
728
- * the operation fails. This is the synchronous version of {@link lutimes}.
729
- * @since v14.5.0, v12.19.0
730
- */
731
- export function lutimesSync(path: PathLike, atime: TimeLike, mtime: TimeLike): void;
732
- /**
733
- * Asynchronously changes the permissions of a file. No arguments other than a
734
- * possible exception are given to the completion callback.
735
- *
736
- * See the POSIX [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html) documentation for more detail.
737
- *
738
- * ```js
739
- * import { chmod } from 'fs';
740
- *
741
- * chmod('my_file.txt', 0o775, (err) => {
742
- * if (err) throw err;
743
- * console.log('The permissions for file "my_file.txt" have been changed!');
744
- * });
745
- * ```
746
- * @since v0.1.30
747
- */
748
- export function chmod(path: PathLike, mode: Mode, callback: NoParamCallback): void;
749
- export namespace chmod {
750
- /**
751
- * Asynchronous chmod(2) - Change permissions of a file.
752
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
753
- * @param mode A file mode. If a string is passed, it is parsed as an octal integer.
754
- */
755
- function __promisify__(path: PathLike, mode: Mode): Promise<void>;
756
- }
757
- /**
758
- * For detailed information, see the documentation of the asynchronous version of
759
- * this API: {@link chmod}.
760
- *
761
- * See the POSIX [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html) documentation for more detail.
762
- * @since v0.6.7
763
- */
764
- export function chmodSync(path: PathLike, mode: Mode): void;
765
- /**
766
- * Sets the permissions on the file. No arguments other than a possible exception
767
- * are given to the completion callback.
768
- *
769
- * See the POSIX [`fchmod(2)`](http://man7.org/linux/man-pages/man2/fchmod.2.html) documentation for more detail.
770
- * @since v0.4.7
771
- */
772
- export function fchmod(fd: number, mode: Mode, callback: NoParamCallback): void;
773
- export namespace fchmod {
774
- /**
775
- * Asynchronous fchmod(2) - Change permissions of a file.
776
- * @param fd A file descriptor.
777
- * @param mode A file mode. If a string is passed, it is parsed as an octal integer.
778
- */
779
- function __promisify__(fd: number, mode: Mode): Promise<void>;
780
- }
781
- /**
782
- * Sets the permissions on the file. Returns `undefined`.
783
- *
784
- * See the POSIX [`fchmod(2)`](http://man7.org/linux/man-pages/man2/fchmod.2.html) documentation for more detail.
785
- * @since v0.4.7
786
- */
787
- export function fchmodSync(fd: number, mode: Mode): void;
788
- /**
789
- * Changes the permissions on a symbolic link. No arguments other than a possible
790
- * exception are given to the completion callback.
791
- *
792
- * This method is only implemented on macOS.
793
- *
794
- * See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail.
795
- * @deprecated Since v0.4.7
796
- */
797
- export function lchmod(path: PathLike, mode: Mode, callback: NoParamCallback): void;
798
- /** @deprecated */
799
- export namespace lchmod {
800
- /**
801
- * Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links.
802
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
803
- * @param mode A file mode. If a string is passed, it is parsed as an octal integer.
804
- */
805
- function __promisify__(path: PathLike, mode: Mode): Promise<void>;
806
- }
807
- /**
808
- * Changes the permissions on a symbolic link. Returns `undefined`.
809
- *
810
- * This method is only implemented on macOS.
811
- *
812
- * See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail.
813
- * @deprecated Since v0.4.7
814
- */
815
- export function lchmodSync(path: PathLike, mode: Mode): void;
816
- /**
817
- * Asynchronous [`stat(2)`](http://man7.org/linux/man-pages/man2/stat.2.html). The callback gets two arguments `(err, stats)` where`stats` is an `fs.Stats` object.
818
- *
819
- * In case of an error, the `err.code` will be one of `Common System Errors`.
820
- *
821
- * Using `fs.stat()` to check for the existence of a file before calling`fs.open()`, `fs.readFile()` or `fs.writeFile()` is not recommended.
822
- * Instead, user code should open/read/write the file directly and handle the
823
- * error raised if the file is not available.
824
- *
825
- * To check if a file exists without manipulating it afterwards, {@link access} is recommended.
826
- *
827
- * For example, given the following directory structure:
828
- *
829
- * ```text
830
- * - txtDir
831
- * -- file.txt
832
- * - app.js
833
- * ```
834
- *
835
- * The next program will check for the stats of the given paths:
836
- *
837
- * ```js
838
- * import { stat } from 'fs';
839
- *
840
- * const pathsToCheck = ['./txtDir', './txtDir/file.txt'];
841
- *
842
- * for (let i = 0; i < pathsToCheck.length; i++) {
843
- * stat(pathsToCheck[i], (err, stats) => {
844
- * console.log(stats.isDirectory());
845
- * console.log(stats);
846
- * });
847
- * }
848
- * ```
849
- *
850
- * The resulting output will resemble:
851
- *
852
- * ```console
853
- * true
854
- * Stats {
855
- * dev: 16777220,
856
- * mode: 16877,
857
- * nlink: 3,
858
- * uid: 501,
859
- * gid: 20,
860
- * rdev: 0,
861
- * blksize: 4096,
862
- * ino: 14214262,
863
- * size: 96,
864
- * blocks: 0,
865
- * atimeMs: 1561174653071.963,
866
- * mtimeMs: 1561174614583.3518,
867
- * ctimeMs: 1561174626623.5366,
868
- * birthtimeMs: 1561174126937.2893,
869
- * atime: 2019-06-22T03:37:33.072Z,
870
- * mtime: 2019-06-22T03:36:54.583Z,
871
- * ctime: 2019-06-22T03:37:06.624Z,
872
- * birthtime: 2019-06-22T03:28:46.937Z
873
- * }
874
- * false
875
- * Stats {
876
- * dev: 16777220,
877
- * mode: 33188,
878
- * nlink: 1,
879
- * uid: 501,
880
- * gid: 20,
881
- * rdev: 0,
882
- * blksize: 4096,
883
- * ino: 14214074,
884
- * size: 8,
885
- * blocks: 8,
886
- * atimeMs: 1561174616618.8555,
887
- * mtimeMs: 1561174614584,
888
- * ctimeMs: 1561174614583.8145,
889
- * birthtimeMs: 1561174007710.7478,
890
- * atime: 2019-06-22T03:36:56.619Z,
891
- * mtime: 2019-06-22T03:36:54.584Z,
892
- * ctime: 2019-06-22T03:36:54.584Z,
893
- * birthtime: 2019-06-22T03:26:47.711Z
894
- * }
895
- * ```
896
- * @since v0.0.2
897
- */
898
- export function stat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;
899
- export function stat(
900
- path: PathLike,
901
- options:
902
- | (StatOptions & {
903
- bigint?: false | undefined;
904
- })
905
- | undefined,
906
- callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void
907
- ): void;
908
- export function stat(
909
- path: PathLike,
910
- options: StatOptions & {
911
- bigint: true;
912
- },
913
- callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void
914
- ): void;
915
- export function stat(path: PathLike, options: StatOptions | undefined, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void;
916
- export namespace stat {
917
- /**
918
- * Asynchronous stat(2) - Get file status.
919
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
920
- */
921
- function __promisify__(
922
- path: PathLike,
923
- options?: StatOptions & {
924
- bigint?: false | undefined;
925
- }
926
- ): Promise<Stats>;
927
- function __promisify__(
928
- path: PathLike,
929
- options: StatOptions & {
930
- bigint: true;
931
- }
932
- ): Promise<BigIntStats>;
933
- function __promisify__(path: PathLike, options?: StatOptions): Promise<Stats | BigIntStats>;
934
- }
935
- export interface StatSyncFn extends Function {
936
- (path: PathLike, options?: undefined): Stats;
937
- (
938
- path: PathLike,
939
- options?: StatSyncOptions & {
940
- bigint?: false | undefined;
941
- throwIfNoEntry: false;
942
- }
943
- ): Stats | undefined;
944
- (
945
- path: PathLike,
946
- options: StatSyncOptions & {
947
- bigint: true;
948
- throwIfNoEntry: false;
949
- }
950
- ): BigIntStats | undefined;
951
- (
952
- path: PathLike,
953
- options?: StatSyncOptions & {
954
- bigint?: false | undefined;
955
- }
956
- ): Stats;
957
- (
958
- path: PathLike,
959
- options: StatSyncOptions & {
960
- bigint: true;
961
- }
962
- ): BigIntStats;
963
- (
964
- path: PathLike,
965
- options: StatSyncOptions & {
966
- bigint: boolean;
967
- throwIfNoEntry?: false | undefined;
968
- }
969
- ): Stats | BigIntStats;
970
- (path: PathLike, options?: StatSyncOptions): Stats | BigIntStats | undefined;
971
- }
972
- /**
973
- * Synchronous stat(2) - Get file status.
974
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
975
- */
976
- export const statSync: StatSyncFn;
977
- /**
978
- * Invokes the callback with the `fs.Stats` for the file descriptor.
979
- *
980
- * See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail.
981
- * @since v0.1.95
982
- */
983
- export function fstat(fd: number, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;
984
- export function fstat(
985
- fd: number,
986
- options:
987
- | (StatOptions & {
988
- bigint?: false | undefined;
989
- })
990
- | undefined,
991
- callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void
992
- ): void;
993
- export function fstat(
994
- fd: number,
995
- options: StatOptions & {
996
- bigint: true;
997
- },
998
- callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void
999
- ): void;
1000
- export function fstat(fd: number, options: StatOptions | undefined, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void;
1001
- export namespace fstat {
1002
- /**
1003
- * Asynchronous fstat(2) - Get file status.
1004
- * @param fd A file descriptor.
1005
- */
1006
- function __promisify__(
1007
- fd: number,
1008
- options?: StatOptions & {
1009
- bigint?: false | undefined;
1010
- }
1011
- ): Promise<Stats>;
1012
- function __promisify__(
1013
- fd: number,
1014
- options: StatOptions & {
1015
- bigint: true;
1016
- }
1017
- ): Promise<BigIntStats>;
1018
- function __promisify__(fd: number, options?: StatOptions): Promise<Stats | BigIntStats>;
1019
- }
1020
- /**
1021
- * Retrieves the `fs.Stats` for the file descriptor.
1022
- *
1023
- * See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail.
1024
- * @since v0.1.95
1025
- */
1026
- export function fstatSync(
1027
- fd: number,
1028
- options?: StatOptions & {
1029
- bigint?: false | undefined;
1030
- }
1031
- ): Stats;
1032
- export function fstatSync(
1033
- fd: number,
1034
- options: StatOptions & {
1035
- bigint: true;
1036
- }
1037
- ): BigIntStats;
1038
- export function fstatSync(fd: number, options?: StatOptions): Stats | BigIntStats;
1039
- /**
1040
- * Retrieves the `fs.Stats` for the symbolic link referred to by the path.
1041
- * The callback gets two arguments `(err, stats)` where `stats` is a `fs.Stats` object. `lstat()` is identical to `stat()`, except that if `path` is a symbolic
1042
- * link, then the link itself is stat-ed, not the file that it refers to.
1043
- *
1044
- * See the POSIX [`lstat(2)`](http://man7.org/linux/man-pages/man2/lstat.2.html) documentation for more details.
1045
- * @since v0.1.30
1046
- */
1047
- export function lstat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;
1048
- export function lstat(
1049
- path: PathLike,
1050
- options:
1051
- | (StatOptions & {
1052
- bigint?: false | undefined;
1053
- })
1054
- | undefined,
1055
- callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void
1056
- ): void;
1057
- export function lstat(
1058
- path: PathLike,
1059
- options: StatOptions & {
1060
- bigint: true;
1061
- },
1062
- callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void
1063
- ): void;
1064
- export function lstat(path: PathLike, options: StatOptions | undefined, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void;
1065
- export namespace lstat {
1066
- /**
1067
- * Asynchronous lstat(2) - Get file status. Does not dereference symbolic links.
1068
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1069
- */
1070
- function __promisify__(
1071
- path: PathLike,
1072
- options?: StatOptions & {
1073
- bigint?: false | undefined;
1074
- }
1075
- ): Promise<Stats>;
1076
- function __promisify__(
1077
- path: PathLike,
1078
- options: StatOptions & {
1079
- bigint: true;
1080
- }
1081
- ): Promise<BigIntStats>;
1082
- function __promisify__(path: PathLike, options?: StatOptions): Promise<Stats | BigIntStats>;
1083
- }
1084
- /**
1085
- * Synchronous lstat(2) - Get file status. Does not dereference symbolic links.
1086
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1087
- */
1088
- export const lstatSync: StatSyncFn;
1089
- /**
1090
- * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. No arguments other than
1091
- * a possible
1092
- * exception are given to the completion callback.
1093
- * @since v0.1.31
1094
- */
1095
- export function link(existingPath: PathLike, newPath: PathLike, callback: NoParamCallback): void;
1096
- export namespace link {
1097
- /**
1098
- * Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file.
1099
- * @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol.
1100
- * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
1101
- */
1102
- function __promisify__(existingPath: PathLike, newPath: PathLike): Promise<void>;
1103
- }
1104
- /**
1105
- * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. Returns `undefined`.
1106
- * @since v0.1.31
1107
- */
1108
- export function linkSync(existingPath: PathLike, newPath: PathLike): void;
1109
- /**
1110
- * Creates the link called `path` pointing to `target`. No arguments other than a
1111
- * possible exception are given to the completion callback.
1112
- *
1113
- * See the POSIX [`symlink(2)`](http://man7.org/linux/man-pages/man2/symlink.2.html) documentation for more details.
1114
- *
1115
- * The `type` argument is only available on Windows and ignored on other platforms.
1116
- * It can be set to `'dir'`, `'file'`, or `'junction'`. If the `type` argument is
1117
- * not set, Node.js will autodetect `target` type and use `'file'` or `'dir'`. If
1118
- * the `target` does not exist, `'file'` will be used. Windows junction points
1119
- * require the destination path to be absolute. When using `'junction'`, the`target` argument will automatically be normalized to absolute path.
1120
- *
1121
- * Relative targets are relative to the link’s parent directory.
1122
- *
1123
- * ```js
1124
- * import { symlink } from 'fs';
1125
- *
1126
- * symlink('./mew', './example/mewtwo', callback);
1127
- * ```
1128
- *
1129
- * The above example creates a symbolic link `mewtwo` in the `example` which points
1130
- * to `mew` in the same directory:
1131
- *
1132
- * ```bash
1133
- * $ tree example/
1134
- * example/
1135
- * ├── mew
1136
- * └── mewtwo -> ./mew
1137
- * ```
1138
- * @since v0.1.31
1139
- */
1140
- export function symlink(target: PathLike, path: PathLike, type: symlink.Type | undefined | null, callback: NoParamCallback): void;
1141
- /**
1142
- * Asynchronous symlink(2) - Create a new symbolic link to an existing file.
1143
- * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol.
1144
- * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol.
1145
- */
1146
- export function symlink(target: PathLike, path: PathLike, callback: NoParamCallback): void;
1147
- export namespace symlink {
1148
- /**
1149
- * Asynchronous symlink(2) - Create a new symbolic link to an existing file.
1150
- * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol.
1151
- * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol.
1152
- * @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms).
1153
- * When using `'junction'`, the `target` argument will automatically be normalized to an absolute path.
1154
- */
1155
- function __promisify__(target: PathLike, path: PathLike, type?: string | null): Promise<void>;
1156
- type Type = 'dir' | 'file' | 'junction';
1157
- }
1158
- /**
1159
- * Returns `undefined`.
1160
- *
1161
- * For detailed information, see the documentation of the asynchronous version of
1162
- * this API: {@link symlink}.
1163
- * @since v0.1.31
1164
- */
1165
- export function symlinkSync(target: PathLike, path: PathLike, type?: symlink.Type | null): void;
1166
- /**
1167
- * Reads the contents of the symbolic link referred to by `path`. The callback gets
1168
- * two arguments `(err, linkString)`.
1169
- *
1170
- * See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more details.
1171
- *
1172
- * The optional `options` argument can be a string specifying an encoding, or an
1173
- * object with an `encoding` property specifying the character encoding to use for
1174
- * the link path passed to the callback. If the `encoding` is set to `'buffer'`,
1175
- * the link path returned will be passed as a `Buffer` object.
1176
- * @since v0.1.31
1177
- */
1178
- export function readlink(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, linkString: string) => void): void;
1179
- /**
1180
- * Asynchronous readlink(2) - read value of a symbolic link.
1181
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1182
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1183
- */
1184
- export function readlink(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, linkString: Buffer) => void): void;
1185
- /**
1186
- * Asynchronous readlink(2) - read value of a symbolic link.
1187
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1188
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1189
- */
1190
- export function readlink(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, linkString: string | Buffer) => void): void;
1191
- /**
1192
- * Asynchronous readlink(2) - read value of a symbolic link.
1193
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1194
- */
1195
- export function readlink(path: PathLike, callback: (err: NodeJS.ErrnoException | null, linkString: string) => void): void;
1196
- export namespace readlink {
1197
- /**
1198
- * Asynchronous readlink(2) - read value of a symbolic link.
1199
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1200
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1201
- */
1202
- function __promisify__(path: PathLike, options?: EncodingOption): Promise<string>;
1203
- /**
1204
- * Asynchronous readlink(2) - read value of a symbolic link.
1205
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1206
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1207
- */
1208
- function __promisify__(path: PathLike, options: BufferEncodingOption): Promise<Buffer>;
1209
- /**
1210
- * Asynchronous readlink(2) - read value of a symbolic link.
1211
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1212
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1213
- */
1214
- function __promisify__(path: PathLike, options?: EncodingOption): Promise<string | Buffer>;
1215
- }
1216
- /**
1217
- * Returns the symbolic link's string value.
1218
- *
1219
- * See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more details.
1220
- *
1221
- * The optional `options` argument can be a string specifying an encoding, or an
1222
- * object with an `encoding` property specifying the character encoding to use for
1223
- * the link path returned. If the `encoding` is set to `'buffer'`,
1224
- * the link path returned will be passed as a `Buffer` object.
1225
- * @since v0.1.31
1226
- */
1227
- export function readlinkSync(path: PathLike, options?: EncodingOption): string;
1228
- /**
1229
- * Synchronous readlink(2) - read value of a symbolic link.
1230
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1231
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1232
- */
1233
- export function readlinkSync(path: PathLike, options: BufferEncodingOption): Buffer;
1234
- /**
1235
- * Synchronous readlink(2) - read value of a symbolic link.
1236
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1237
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1238
- */
1239
- export function readlinkSync(path: PathLike, options?: EncodingOption): string | Buffer;
1240
- /**
1241
- * Asynchronously computes the canonical pathname by resolving `.`, `..` and
1242
- * symbolic links.
1243
- *
1244
- * A canonical pathname is not necessarily unique. Hard links and bind mounts can
1245
- * expose a file system entity through many pathnames.
1246
- *
1247
- * This function behaves like [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html), with some exceptions:
1248
- *
1249
- * 1. No case conversion is performed on case-insensitive file systems.
1250
- * 2. The maximum number of symbolic links is platform-independent and generally
1251
- * (much) higher than what the native [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html) implementation supports.
1252
- *
1253
- * The `callback` gets two arguments `(err, resolvedPath)`. May use `process.cwd`to resolve relative paths.
1254
- *
1255
- * Only paths that can be converted to UTF8 strings are supported.
1256
- *
1257
- * The optional `options` argument can be a string specifying an encoding, or an
1258
- * object with an `encoding` property specifying the character encoding to use for
1259
- * the path passed to the callback. If the `encoding` is set to `'buffer'`,
1260
- * the path returned will be passed as a `Buffer` object.
1261
- *
1262
- * If `path` resolves to a socket or a pipe, the function will return a system
1263
- * dependent name for that object.
1264
- * @since v0.1.31
1265
- */
1266
- export function realpath(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void;
1267
- /**
1268
- * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1269
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1270
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1271
- */
1272
- export function realpath(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void): void;
1273
- /**
1274
- * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1275
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1276
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1277
- */
1278
- export function realpath(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void): void;
1279
- /**
1280
- * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1281
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1282
- */
1283
- export function realpath(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void;
1284
- export namespace realpath {
1285
- /**
1286
- * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1287
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1288
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1289
- */
1290
- function __promisify__(path: PathLike, options?: EncodingOption): Promise<string>;
1291
- /**
1292
- * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1293
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1294
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1295
- */
1296
- function __promisify__(path: PathLike, options: BufferEncodingOption): Promise<Buffer>;
1297
- /**
1298
- * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1299
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1300
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1301
- */
1302
- function __promisify__(path: PathLike, options?: EncodingOption): Promise<string | Buffer>;
1303
- /**
1304
- * Asynchronous [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html).
1305
- *
1306
- * The `callback` gets two arguments `(err, resolvedPath)`.
1307
- *
1308
- * Only paths that can be converted to UTF8 strings are supported.
1309
- *
1310
- * The optional `options` argument can be a string specifying an encoding, or an
1311
- * object with an `encoding` property specifying the character encoding to use for
1312
- * the path passed to the callback. If the `encoding` is set to `'buffer'`,
1313
- * the path returned will be passed as a `Buffer` object.
1314
- *
1315
- * On Linux, when Node.js is linked against musl libc, the procfs file system must
1316
- * be mounted on `/proc` in order for this function to work. Glibc does not have
1317
- * this restriction.
1318
- * @since v9.2.0
1319
- */
1320
- function native(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void;
1321
- function native(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void): void;
1322
- function native(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void): void;
1323
- function native(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void;
1324
- }
1325
- /**
1326
- * Returns the resolved pathname.
1327
- *
1328
- * For detailed information, see the documentation of the asynchronous version of
1329
- * this API: {@link realpath}.
1330
- * @since v0.1.31
1331
- */
1332
- export function realpathSync(path: PathLike, options?: EncodingOption): string;
1333
- /**
1334
- * Synchronous realpath(3) - return the canonicalized absolute pathname.
1335
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1336
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1337
- */
1338
- export function realpathSync(path: PathLike, options: BufferEncodingOption): Buffer;
1339
- /**
1340
- * Synchronous realpath(3) - return the canonicalized absolute pathname.
1341
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1342
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1343
- */
1344
- export function realpathSync(path: PathLike, options?: EncodingOption): string | Buffer;
1345
- export namespace realpathSync {
1346
- function native(path: PathLike, options?: EncodingOption): string;
1347
- function native(path: PathLike, options: BufferEncodingOption): Buffer;
1348
- function native(path: PathLike, options?: EncodingOption): string | Buffer;
1349
- }
1350
- /**
1351
- * Asynchronously removes a file or symbolic link. No arguments other than a
1352
- * possible exception are given to the completion callback.
1353
- *
1354
- * ```js
1355
- * import { unlink } from 'fs';
1356
- * // Assuming that 'path/file.txt' is a regular file.
1357
- * unlink('path/file.txt', (err) => {
1358
- * if (err) throw err;
1359
- * console.log('path/file.txt was deleted');
1360
- * });
1361
- * ```
1362
- *
1363
- * `fs.unlink()` will not work on a directory, empty or otherwise. To remove a
1364
- * directory, use {@link rmdir}.
1365
- *
1366
- * See the POSIX [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html) documentation for more details.
1367
- * @since v0.0.2
1368
- */
1369
- export function unlink(path: PathLike, callback: NoParamCallback): void;
1370
- export namespace unlink {
1371
- /**
1372
- * Asynchronous unlink(2) - delete a name and possibly the file it refers to.
1373
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1374
- */
1375
- function __promisify__(path: PathLike): Promise<void>;
1376
- }
1377
- /**
1378
- * Synchronous [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html). Returns `undefined`.
1379
- * @since v0.1.21
1380
- */
1381
- export function unlinkSync(path: PathLike): void;
1382
- export interface RmDirOptions {
1383
- /**
1384
- * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or
1385
- * `EPERM` error is encountered, Node.js will retry the operation with a linear
1386
- * backoff wait of `retryDelay` ms longer on each try. This option represents the
1387
- * number of retries. This option is ignored if the `recursive` option is not
1388
- * `true`.
1389
- * @default 0
1390
- */
1391
- maxRetries?: number | undefined;
1392
- /**
1393
- * @deprecated since v14.14.0 In future versions of Node.js and will trigger a warning
1394
- * `fs.rmdir(path, { recursive: true })` will throw if `path` does not exist or is a file.
1395
- * Use `fs.rm(path, { recursive: true, force: true })` instead.
1396
- *
1397
- * If `true`, perform a recursive directory removal. In
1398
- * recursive mode soperations are retried on failure.
1399
- * @default false
1400
- */
1401
- recursive?: boolean | undefined;
1402
- /**
1403
- * The amount of time in milliseconds to wait between retries.
1404
- * This option is ignored if the `recursive` option is not `true`.
1405
- * @default 100
1406
- */
1407
- retryDelay?: number | undefined;
1408
- }
1409
- /**
1410
- * Asynchronous [`rmdir(2)`](http://man7.org/linux/man-pages/man2/rmdir.2.html). No arguments other than a possible exception are given
1411
- * to the completion callback.
1412
- *
1413
- * Using `fs.rmdir()` on a file (not a directory) results in an `ENOENT` error on
1414
- * Windows and an `ENOTDIR` error on POSIX.
1415
- *
1416
- * To get a behavior similar to the `rm -rf` Unix command, use {@link rm} with options `{ recursive: true, force: true }`.
1417
- * @since v0.0.2
1418
- */
1419
- export function rmdir(path: PathLike, callback: NoParamCallback): void;
1420
- export function rmdir(path: PathLike, options: RmDirOptions, callback: NoParamCallback): void;
1421
- export namespace rmdir {
1422
- /**
1423
- * Asynchronous rmdir(2) - delete a directory.
1424
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1425
- */
1426
- function __promisify__(path: PathLike, options?: RmDirOptions): Promise<void>;
1427
- }
1428
- /**
1429
- * Synchronous [`rmdir(2)`](http://man7.org/linux/man-pages/man2/rmdir.2.html). Returns `undefined`.
1430
- *
1431
- * Using `fs.rmdirSync()` on a file (not a directory) results in an `ENOENT` error
1432
- * on Windows and an `ENOTDIR` error on POSIX.
1433
- *
1434
- * To get a behavior similar to the `rm -rf` Unix command, use {@link rmSync} with options `{ recursive: true, force: true }`.
1435
- * @since v0.1.21
1436
- */
1437
- export function rmdirSync(path: PathLike, options?: RmDirOptions): void;
1438
- export interface RmOptions {
1439
- /**
1440
- * When `true`, exceptions will be ignored if `path` does not exist.
1441
- * @default false
1442
- */
1443
- force?: boolean | undefined;
1444
- /**
1445
- * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or
1446
- * `EPERM` error is encountered, Node.js will retry the operation with a linear
1447
- * backoff wait of `retryDelay` ms longer on each try. This option represents the
1448
- * number of retries. This option is ignored if the `recursive` option is not
1449
- * `true`.
1450
- * @default 0
1451
- */
1452
- maxRetries?: number | undefined;
1453
- /**
1454
- * If `true`, perform a recursive directory removal. In
1455
- * recursive mode, operations are retried on failure.
1456
- * @default false
1457
- */
1458
- recursive?: boolean | undefined;
1459
- /**
1460
- * The amount of time in milliseconds to wait between retries.
1461
- * This option is ignored if the `recursive` option is not `true`.
1462
- * @default 100
1463
- */
1464
- retryDelay?: number | undefined;
1465
- }
1466
- /**
1467
- * Asynchronously removes files and directories (modeled on the standard POSIX `rm`utility). No arguments other than a possible exception are given to the
1468
- * completion callback.
1469
- * @since v14.14.0
1470
- */
1471
- export function rm(path: PathLike, callback: NoParamCallback): void;
1472
- export function rm(path: PathLike, options: RmOptions, callback: NoParamCallback): void;
1473
- export namespace rm {
1474
- /**
1475
- * Asynchronously removes files and directories (modeled on the standard POSIX `rm` utility).
1476
- */
1477
- function __promisify__(path: PathLike, options?: RmOptions): Promise<void>;
1478
- }
1479
- /**
1480
- * Synchronously removes files and directories (modeled on the standard POSIX `rm`utility). Returns `undefined`.
1481
- * @since v14.14.0
1482
- */
1483
- export function rmSync(path: PathLike, options?: RmOptions): void;
1484
- export interface MakeDirectoryOptions {
1485
- /**
1486
- * Indicates whether parent folders should be created.
1487
- * If a folder was created, the path to the first created folder will be returned.
1488
- * @default false
1489
- */
1490
- recursive?: boolean | undefined;
1491
- /**
1492
- * A file mode. If a string is passed, it is parsed as an octal integer. If not specified
1493
- * @default 0o777
1494
- */
1495
- mode?: Mode | undefined;
1496
- }
1497
- /**
1498
- * Asynchronously creates a directory.
1499
- *
1500
- * The callback is given a possible exception and, if `recursive` is `true`, the
1501
- * first directory path created, `(err[, path])`.`path` can still be `undefined` when `recursive` is `true`, if no directory was
1502
- * created.
1503
- *
1504
- * The optional `options` argument can be an integer specifying `mode` (permission
1505
- * and sticky bits), or an object with a `mode` property and a `recursive`property indicating whether parent directories should be created. Calling`fs.mkdir()` when `path` is a directory that
1506
- * exists results in an error only
1507
- * when `recursive` is false.
1508
- *
1509
- * ```js
1510
- * import { mkdir } from 'fs';
1511
- *
1512
- * // Creates /tmp/a/apple, regardless of whether `/tmp` and /tmp/a exist.
1513
- * mkdir('/tmp/a/apple', { recursive: true }, (err) => {
1514
- * if (err) throw err;
1515
- * });
1516
- * ```
1517
- *
1518
- * On Windows, using `fs.mkdir()` on the root directory even with recursion will
1519
- * result in an error:
1520
- *
1521
- * ```js
1522
- * import { mkdir } from 'fs';
1523
- *
1524
- * mkdir('/', { recursive: true }, (err) => {
1525
- * // => [Error: EPERM: operation not permitted, mkdir 'C:\']
1526
- * });
1527
- * ```
1528
- *
1529
- * See the POSIX [`mkdir(2)`](http://man7.org/linux/man-pages/man2/mkdir.2.html) documentation for more details.
1530
- * @since v0.1.8
1531
- */
1532
- export function mkdir(
1533
- path: PathLike,
1534
- options: MakeDirectoryOptions & {
1535
- recursive: true;
1536
- },
1537
- callback: (err: NodeJS.ErrnoException | null, path?: string) => void
1538
- ): void;
1539
- /**
1540
- * Asynchronous mkdir(2) - create a directory.
1541
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1542
- * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1543
- * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1544
- */
1545
- export function mkdir(
1546
- path: PathLike,
1547
- options:
1548
- | Mode
1549
- | (MakeDirectoryOptions & {
1550
- recursive?: false | undefined;
1551
- })
1552
- | null
1553
- | undefined,
1554
- callback: NoParamCallback
1555
- ): void;
1556
- /**
1557
- * Asynchronous mkdir(2) - create a directory.
1558
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1559
- * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1560
- * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1561
- */
1562
- export function mkdir(path: PathLike, options: Mode | MakeDirectoryOptions | null | undefined, callback: (err: NodeJS.ErrnoException | null, path?: string) => void): void;
1563
- /**
1564
- * Asynchronous mkdir(2) - create a directory with a mode of `0o777`.
1565
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1566
- */
1567
- export function mkdir(path: PathLike, callback: NoParamCallback): void;
1568
- export namespace mkdir {
1569
- /**
1570
- * Asynchronous mkdir(2) - create a directory.
1571
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1572
- * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1573
- * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1574
- */
1575
- function __promisify__(
1576
- path: PathLike,
1577
- options: MakeDirectoryOptions & {
1578
- recursive: true;
1579
- }
1580
- ): Promise<string | undefined>;
1581
- /**
1582
- * Asynchronous mkdir(2) - create a directory.
1583
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1584
- * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1585
- * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1586
- */
1587
- function __promisify__(
1588
- path: PathLike,
1589
- options?:
1590
- | Mode
1591
- | (MakeDirectoryOptions & {
1592
- recursive?: false | undefined;
1593
- })
1594
- | null
1595
- ): Promise<void>;
1596
- /**
1597
- * Asynchronous mkdir(2) - create a directory.
1598
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1599
- * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1600
- * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1601
- */
1602
- function __promisify__(path: PathLike, options?: Mode | MakeDirectoryOptions | null): Promise<string | undefined>;
1603
- }
1604
- /**
1605
- * Synchronously creates a directory. Returns `undefined`, or if `recursive` is`true`, the first directory path created.
1606
- * This is the synchronous version of {@link mkdir}.
1607
- *
1608
- * See the POSIX [`mkdir(2)`](http://man7.org/linux/man-pages/man2/mkdir.2.html) documentation for more details.
1609
- * @since v0.1.21
1610
- */
1611
- export function mkdirSync(
1612
- path: PathLike,
1613
- options: MakeDirectoryOptions & {
1614
- recursive: true;
1615
- }
1616
- ): string | undefined;
1617
- /**
1618
- * Synchronous mkdir(2) - create a directory.
1619
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1620
- * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1621
- * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1622
- */
1623
- export function mkdirSync(
1624
- path: PathLike,
1625
- options?:
1626
- | Mode
1627
- | (MakeDirectoryOptions & {
1628
- recursive?: false | undefined;
1629
- })
1630
- | null
1631
- ): void;
1632
- /**
1633
- * Synchronous mkdir(2) - create a directory.
1634
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1635
- * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1636
- * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1637
- */
1638
- export function mkdirSync(path: PathLike, options?: Mode | MakeDirectoryOptions | null): string | undefined;
1639
- /**
1640
- * Creates a unique temporary directory.
1641
- *
1642
- * Generates six random characters to be appended behind a required`prefix` to create a unique temporary directory. Due to platform
1643
- * inconsistencies, avoid trailing `X` characters in `prefix`. Some platforms,
1644
- * notably the BSDs, can return more than six random characters, and replace
1645
- * trailing `X` characters in `prefix` with random characters.
1646
- *
1647
- * The created directory path is passed as a string to the callback's second
1648
- * parameter.
1649
- *
1650
- * The optional `options` argument can be a string specifying an encoding, or an
1651
- * object with an `encoding` property specifying the character encoding to use.
1652
- *
1653
- * ```js
1654
- * import { mkdtemp } from 'fs';
1655
- *
1656
- * mkdtemp(path.join(os.tmpdir(), 'foo-'), (err, directory) => {
1657
- * if (err) throw err;
1658
- * console.log(directory);
1659
- * // Prints: /tmp/foo-itXde2 or C:\Users\...\AppData\Local\Temp\foo-itXde2
1660
- * });
1661
- * ```
1662
- *
1663
- * The `fs.mkdtemp()` method will append the six randomly selected characters
1664
- * directly to the `prefix` string. For instance, given a directory `/tmp`, if the
1665
- * intention is to create a temporary directory _within_`/tmp`, the `prefix`must end with a trailing platform-specific path separator
1666
- * (`require('path').sep`).
1667
- *
1668
- * ```js
1669
- * import { tmpdir } from 'os';
1670
- * import { mkdtemp } from 'fs';
1671
- *
1672
- * // The parent directory for the new temporary directory
1673
- * const tmpDir = tmpdir();
1674
- *
1675
- * // This method is *INCORRECT*:
1676
- * mkdtemp(tmpDir, (err, directory) => {
1677
- * if (err) throw err;
1678
- * console.log(directory);
1679
- * // Will print something similar to `/tmpabc123`.
1680
- * // A new temporary directory is created at the file system root
1681
- * // rather than *within* the /tmp directory.
1682
- * });
1683
- *
1684
- * // This method is *CORRECT*:
1685
- * import { sep } from 'path';
1686
- * mkdtemp(`${tmpDir}${sep}`, (err, directory) => {
1687
- * if (err) throw err;
1688
- * console.log(directory);
1689
- * // Will print something similar to `/tmp/abc123`.
1690
- * // A new temporary directory is created within
1691
- * // the /tmp directory.
1692
- * });
1693
- * ```
1694
- * @since v5.10.0
1695
- */
1696
- export function mkdtemp(prefix: string, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, folder: string) => void): void;
1697
- /**
1698
- * Asynchronously creates a unique temporary directory.
1699
- * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1700
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1701
- */
1702
- export function mkdtemp(
1703
- prefix: string,
1704
- options:
1705
- | 'buffer'
1706
- | {
1707
- encoding: 'buffer';
1708
- },
1709
- callback: (err: NodeJS.ErrnoException | null, folder: Buffer) => void
1710
- ): void;
1711
- /**
1712
- * Asynchronously creates a unique temporary directory.
1713
- * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1714
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1715
- */
1716
- export function mkdtemp(prefix: string, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, folder: string | Buffer) => void): void;
1717
- /**
1718
- * Asynchronously creates a unique temporary directory.
1719
- * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1720
- */
1721
- export function mkdtemp(prefix: string, callback: (err: NodeJS.ErrnoException | null, folder: string) => void): void;
1722
- export namespace mkdtemp {
1723
- /**
1724
- * Asynchronously creates a unique temporary directory.
1725
- * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1726
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1727
- */
1728
- function __promisify__(prefix: string, options?: EncodingOption): Promise<string>;
1729
- /**
1730
- * Asynchronously creates a unique temporary directory.
1731
- * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1732
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1733
- */
1734
- function __promisify__(prefix: string, options: BufferEncodingOption): Promise<Buffer>;
1735
- /**
1736
- * Asynchronously creates a unique temporary directory.
1737
- * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1738
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1739
- */
1740
- function __promisify__(prefix: string, options?: EncodingOption): Promise<string | Buffer>;
1741
- }
1742
- /**
1743
- * Returns the created directory path.
1744
- *
1745
- * For detailed information, see the documentation of the asynchronous version of
1746
- * this API: {@link mkdtemp}.
1747
- *
1748
- * The optional `options` argument can be a string specifying an encoding, or an
1749
- * object with an `encoding` property specifying the character encoding to use.
1750
- * @since v5.10.0
1751
- */
1752
- export function mkdtempSync(prefix: string, options?: EncodingOption): string;
1753
- /**
1754
- * Synchronously creates a unique temporary directory.
1755
- * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1756
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1757
- */
1758
- export function mkdtempSync(prefix: string, options: BufferEncodingOption): Buffer;
1759
- /**
1760
- * Synchronously creates a unique temporary directory.
1761
- * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1762
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1763
- */
1764
- export function mkdtempSync(prefix: string, options?: EncodingOption): string | Buffer;
1765
- /**
1766
- * Reads the contents of a directory. The callback gets two arguments `(err, files)`where `files` is an array of the names of the files in the directory excluding`'.'` and `'..'`.
1767
- *
1768
- * See the POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more details.
1769
- *
1770
- * The optional `options` argument can be a string specifying an encoding, or an
1771
- * object with an `encoding` property specifying the character encoding to use for
1772
- * the filenames passed to the callback. If the `encoding` is set to `'buffer'`,
1773
- * the filenames returned will be passed as `Buffer` objects.
1774
- *
1775
- * If `options.withFileTypes` is set to `true`, the `files` array will contain `fs.Dirent` objects.
1776
- * @since v0.1.8
1777
- */
1778
- export function readdir(
1779
- path: PathLike,
1780
- options:
1781
- | {
1782
- encoding: BufferEncoding | null;
1783
- withFileTypes?: false | undefined;
1784
- }
1785
- | BufferEncoding
1786
- | undefined
1787
- | null,
1788
- callback: (err: NodeJS.ErrnoException | null, files: string[]) => void
1789
- ): void;
1790
- /**
1791
- * Asynchronous readdir(3) - read a directory.
1792
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1793
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1794
- */
1795
- export function readdir(
1796
- path: PathLike,
1797
- options:
1798
- | {
1799
- encoding: 'buffer';
1800
- withFileTypes?: false | undefined;
1801
- }
1802
- | 'buffer',
1803
- callback: (err: NodeJS.ErrnoException | null, files: Buffer[]) => void
1804
- ): void;
1805
- /**
1806
- * Asynchronous readdir(3) - read a directory.
1807
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1808
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1809
- */
1810
- export function readdir(
1811
- path: PathLike,
1812
- options:
1813
- | (ObjectEncodingOptions & {
1814
- withFileTypes?: false | undefined;
1815
- })
1816
- | BufferEncoding
1817
- | undefined
1818
- | null,
1819
- callback: (err: NodeJS.ErrnoException | null, files: string[] | Buffer[]) => void
1820
- ): void;
1821
- /**
1822
- * Asynchronous readdir(3) - read a directory.
1823
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1824
- */
1825
- export function readdir(path: PathLike, callback: (err: NodeJS.ErrnoException | null, files: string[]) => void): void;
1826
- /**
1827
- * Asynchronous readdir(3) - read a directory.
1828
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1829
- * @param options If called with `withFileTypes: true` the result data will be an array of Dirent.
1830
- */
1831
- export function readdir(
1832
- path: PathLike,
1833
- options: ObjectEncodingOptions & {
1834
- withFileTypes: true;
1835
- },
1836
- callback: (err: NodeJS.ErrnoException | null, files: Dirent[]) => void
1837
- ): void;
1838
- export namespace readdir {
1839
- /**
1840
- * Asynchronous readdir(3) - read a directory.
1841
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1842
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1843
- */
1844
- function __promisify__(
1845
- path: PathLike,
1846
- options?:
1847
- | {
1848
- encoding: BufferEncoding | null;
1849
- withFileTypes?: false | undefined;
1850
- }
1851
- | BufferEncoding
1852
- | null
1853
- ): Promise<string[]>;
1854
- /**
1855
- * Asynchronous readdir(3) - read a directory.
1856
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1857
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1858
- */
1859
- function __promisify__(
1860
- path: PathLike,
1861
- options:
1862
- | 'buffer'
1863
- | {
1864
- encoding: 'buffer';
1865
- withFileTypes?: false | undefined;
1866
- }
1867
- ): Promise<Buffer[]>;
1868
- /**
1869
- * Asynchronous readdir(3) - read a directory.
1870
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1871
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1872
- */
1873
- function __promisify__(
1874
- path: PathLike,
1875
- options?:
1876
- | (ObjectEncodingOptions & {
1877
- withFileTypes?: false | undefined;
1878
- })
1879
- | BufferEncoding
1880
- | null
1881
- ): Promise<string[] | Buffer[]>;
1882
- /**
1883
- * Asynchronous readdir(3) - read a directory.
1884
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1885
- * @param options If called with `withFileTypes: true` the result data will be an array of Dirent
1886
- */
1887
- function __promisify__(
1888
- path: PathLike,
1889
- options: ObjectEncodingOptions & {
1890
- withFileTypes: true;
1891
- }
1892
- ): Promise<Dirent[]>;
1893
- }
1894
- /**
1895
- * Reads the contents of the directory.
1896
- *
1897
- * See the POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more details.
1898
- *
1899
- * The optional `options` argument can be a string specifying an encoding, or an
1900
- * object with an `encoding` property specifying the character encoding to use for
1901
- * the filenames returned. If the `encoding` is set to `'buffer'`,
1902
- * the filenames returned will be passed as `Buffer` objects.
1903
- *
1904
- * If `options.withFileTypes` is set to `true`, the result will contain `fs.Dirent` objects.
1905
- * @since v0.1.21
1906
- */
1907
- export function readdirSync(
1908
- path: PathLike,
1909
- options?:
1910
- | {
1911
- encoding: BufferEncoding | null;
1912
- withFileTypes?: false | undefined;
1913
- }
1914
- | BufferEncoding
1915
- | null
1916
- ): string[];
1917
- /**
1918
- * Synchronous readdir(3) - read a directory.
1919
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1920
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1921
- */
1922
- export function readdirSync(
1923
- path: PathLike,
1924
- options:
1925
- | {
1926
- encoding: 'buffer';
1927
- withFileTypes?: false | undefined;
1928
- }
1929
- | 'buffer'
1930
- ): Buffer[];
1931
- /**
1932
- * Synchronous readdir(3) - read a directory.
1933
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1934
- * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1935
- */
1936
- export function readdirSync(
1937
- path: PathLike,
1938
- options?:
1939
- | (ObjectEncodingOptions & {
1940
- withFileTypes?: false | undefined;
1941
- })
1942
- | BufferEncoding
1943
- | null
1944
- ): string[] | Buffer[];
1945
- /**
1946
- * Synchronous readdir(3) - read a directory.
1947
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1948
- * @param options If called with `withFileTypes: true` the result data will be an array of Dirent.
1949
- */
1950
- export function readdirSync(
1951
- path: PathLike,
1952
- options: ObjectEncodingOptions & {
1953
- withFileTypes: true;
1954
- }
1955
- ): Dirent[];
1956
- /**
1957
- * Closes the file descriptor. No arguments other than a possible exception are
1958
- * given to the completion callback.
1959
- *
1960
- * Calling `fs.close()` on any file descriptor (`fd`) that is currently in use
1961
- * through any other `fs` operation may lead to undefined behavior.
1962
- *
1963
- * See the POSIX [`close(2)`](http://man7.org/linux/man-pages/man2/close.2.html) documentation for more detail.
1964
- * @since v0.0.2
1965
- */
1966
- export function close(fd: number, callback?: NoParamCallback): void;
1967
- export namespace close {
1968
- /**
1969
- * Asynchronous close(2) - close a file descriptor.
1970
- * @param fd A file descriptor.
1971
- */
1972
- function __promisify__(fd: number): Promise<void>;
1973
- }
1974
- /**
1975
- * Closes the file descriptor. Returns `undefined`.
1976
- *
1977
- * Calling `fs.closeSync()` on any file descriptor (`fd`) that is currently in use
1978
- * through any other `fs` operation may lead to undefined behavior.
1979
- *
1980
- * See the POSIX [`close(2)`](http://man7.org/linux/man-pages/man2/close.2.html) documentation for more detail.
1981
- * @since v0.1.21
1982
- */
1983
- export function closeSync(fd: number): void;
1984
- /**
1985
- * Asynchronous file open. See the POSIX [`open(2)`](http://man7.org/linux/man-pages/man2/open.2.html) documentation for more details.
1986
- *
1987
- * `mode` sets the file mode (permission and sticky bits), but only if the file was
1988
- * created. On Windows, only the write permission can be manipulated; see {@link chmod}.
1989
- *
1990
- * The callback gets two arguments `(err, fd)`.
1991
- *
1992
- * Some characters (`< > : " / \ | ? *`) are reserved under Windows as documented
1993
- * by [Naming Files, Paths, and Namespaces](https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file). Under NTFS, if the filename contains
1994
- * a colon, Node.js will open a file system stream, as described by [this MSDN page](https://docs.microsoft.com/en-us/windows/desktop/FileIO/using-streams).
1995
- *
1996
- * Functions based on `fs.open()` exhibit this behavior as well:`fs.writeFile()`, `fs.readFile()`, etc.
1997
- * @since v0.0.2
1998
- * @param [flags='r'] See `support of file system `flags``.
1999
- * @param [mode=0o666]
2000
- */
2001
- export function open(path: PathLike, flags: OpenMode, mode: Mode | undefined | null, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void;
2002
- /**
2003
- * Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`.
2004
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2005
- */
2006
- export function open(path: PathLike, flags: OpenMode, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void;
2007
- export namespace open {
2008
- /**
2009
- * Asynchronous open(2) - open and possibly create a file.
2010
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2011
- * @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`.
2012
- */
2013
- function __promisify__(path: PathLike, flags: OpenMode, mode?: Mode | null): Promise<number>;
2014
- }
2015
- /**
2016
- * Returns an integer representing the file descriptor.
2017
- *
2018
- * For detailed information, see the documentation of the asynchronous version of
2019
- * this API: {@link open}.
2020
- * @since v0.1.21
2021
- * @param [flags='r']
2022
- * @param [mode=0o666]
2023
- */
2024
- export function openSync(path: PathLike, flags: OpenMode, mode?: Mode | null): number;
2025
- /**
2026
- * Change the file system timestamps of the object referenced by `path`.
2027
- *
2028
- * The `atime` and `mtime` arguments follow these rules:
2029
- *
2030
- * * Values can be either numbers representing Unix epoch time in seconds,`Date`s, or a numeric string like `'123456789.0'`.
2031
- * * If the value can not be converted to a number, or is `NaN`, `Infinity` or`-Infinity`, an `Error` will be thrown.
2032
- * @since v0.4.2
2033
- */
2034
- export function utimes(path: PathLike, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void;
2035
- export namespace utimes {
2036
- /**
2037
- * Asynchronously change file timestamps of the file referenced by the supplied path.
2038
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2039
- * @param atime The last access time. If a string is provided, it will be coerced to number.
2040
- * @param mtime The last modified time. If a string is provided, it will be coerced to number.
2041
- */
2042
- function __promisify__(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise<void>;
2043
- }
2044
- /**
2045
- * Returns `undefined`.
2046
- *
2047
- * For detailed information, see the documentation of the asynchronous version of
2048
- * this API: {@link utimes}.
2049
- * @since v0.4.2
2050
- */
2051
- export function utimesSync(path: PathLike, atime: TimeLike, mtime: TimeLike): void;
2052
- /**
2053
- * Change the file system timestamps of the object referenced by the supplied file
2054
- * descriptor. See {@link utimes}.
2055
- * @since v0.4.2
2056
- */
2057
- export function futimes(fd: number, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void;
2058
- export namespace futimes {
2059
- /**
2060
- * Asynchronously change file timestamps of the file referenced by the supplied file descriptor.
2061
- * @param fd A file descriptor.
2062
- * @param atime The last access time. If a string is provided, it will be coerced to number.
2063
- * @param mtime The last modified time. If a string is provided, it will be coerced to number.
2064
- */
2065
- function __promisify__(fd: number, atime: TimeLike, mtime: TimeLike): Promise<void>;
2066
- }
2067
- /**
2068
- * Synchronous version of {@link futimes}. Returns `undefined`.
2069
- * @since v0.4.2
2070
- */
2071
- export function futimesSync(fd: number, atime: TimeLike, mtime: TimeLike): void;
2072
- /**
2073
- * Request that all data for the open file descriptor is flushed to the storage
2074
- * device. The specific implementation is operating system and device specific.
2075
- * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. No arguments other
2076
- * than a possible exception are given to the completion callback.
2077
- * @since v0.1.96
2078
- */
2079
- export function fsync(fd: number, callback: NoParamCallback): void;
2080
- export namespace fsync {
2081
- /**
2082
- * Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device.
2083
- * @param fd A file descriptor.
2084
- */
2085
- function __promisify__(fd: number): Promise<void>;
2086
- }
2087
- /**
2088
- * Request that all data for the open file descriptor is flushed to the storage
2089
- * device. The specific implementation is operating system and device specific.
2090
- * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. Returns `undefined`.
2091
- * @since v0.1.96
2092
- */
2093
- export function fsyncSync(fd: number): void;
2094
- /**
2095
- * Write `buffer` to the file specified by `fd`. If `buffer` is a normal object, it
2096
- * must have an own `toString` function property.
2097
- *
2098
- * `offset` determines the part of the buffer to be written, and `length` is
2099
- * an integer specifying the number of bytes to write.
2100
- *
2101
- * `position` refers to the offset from the beginning of the file where this data
2102
- * should be written. If `typeof position !== 'number'`, the data will be written
2103
- * at the current position. See [`pwrite(2)`](http://man7.org/linux/man-pages/man2/pwrite.2.html).
2104
- *
2105
- * The callback will be given three arguments `(err, bytesWritten, buffer)` where`bytesWritten` specifies how many _bytes_ were written from `buffer`.
2106
- *
2107
- * If this method is invoked as its `util.promisify()` ed version, it returns
2108
- * a promise for an `Object` with `bytesWritten` and `buffer` properties.
2109
- *
2110
- * It is unsafe to use `fs.write()` multiple times on the same file without waiting
2111
- * for the callback. For this scenario, {@link createWriteStream} is
2112
- * recommended.
2113
- *
2114
- * On Linux, positional writes don't work when the file is opened in append mode.
2115
- * The kernel ignores the position argument and always appends the data to
2116
- * the end of the file.
2117
- * @since v0.0.2
2118
- */
2119
- export function write<TBuffer extends NodeJS.ArrayBufferView>(
2120
- fd: number,
2121
- buffer: TBuffer,
2122
- offset: number | undefined | null,
2123
- length: number | undefined | null,
2124
- position: number | undefined | null,
2125
- callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void
2126
- ): void;
2127
- /**
2128
- * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
2129
- * @param fd A file descriptor.
2130
- * @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
2131
- * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.
2132
- */
2133
- export function write<TBuffer extends NodeJS.ArrayBufferView>(
2134
- fd: number,
2135
- buffer: TBuffer,
2136
- offset: number | undefined | null,
2137
- length: number | undefined | null,
2138
- callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void
2139
- ): void;
2140
- /**
2141
- * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
2142
- * @param fd A file descriptor.
2143
- * @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
2144
- */
2145
- export function write<TBuffer extends NodeJS.ArrayBufferView>(
2146
- fd: number,
2147
- buffer: TBuffer,
2148
- offset: number | undefined | null,
2149
- callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void
2150
- ): void;
2151
- /**
2152
- * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
2153
- * @param fd A file descriptor.
2154
- */
2155
- export function write<TBuffer extends NodeJS.ArrayBufferView>(fd: number, buffer: TBuffer, callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void): void;
2156
- /**
2157
- * Asynchronously writes `string` to the file referenced by the supplied file descriptor.
2158
- * @param fd A file descriptor.
2159
- * @param string A string to write.
2160
- * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2161
- * @param encoding The expected string encoding.
2162
- */
2163
- export function write(
2164
- fd: number,
2165
- string: string,
2166
- position: number | undefined | null,
2167
- encoding: BufferEncoding | undefined | null,
2168
- callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void
2169
- ): void;
2170
- /**
2171
- * Asynchronously writes `string` to the file referenced by the supplied file descriptor.
2172
- * @param fd A file descriptor.
2173
- * @param string A string to write.
2174
- * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2175
- */
2176
- export function write(fd: number, string: string, position: number | undefined | null, callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void): void;
2177
- /**
2178
- * Asynchronously writes `string` to the file referenced by the supplied file descriptor.
2179
- * @param fd A file descriptor.
2180
- * @param string A string to write.
2181
- */
2182
- export function write(fd: number, string: string, callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void): void;
2183
- export namespace write {
2184
- /**
2185
- * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
2186
- * @param fd A file descriptor.
2187
- * @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
2188
- * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.
2189
- * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2190
- */
2191
- function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(
2192
- fd: number,
2193
- buffer?: TBuffer,
2194
- offset?: number,
2195
- length?: number,
2196
- position?: number | null
2197
- ): Promise<{
2198
- bytesWritten: number;
2199
- buffer: TBuffer;
2200
- }>;
2201
- /**
2202
- * Asynchronously writes `string` to the file referenced by the supplied file descriptor.
2203
- * @param fd A file descriptor.
2204
- * @param string A string to write.
2205
- * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2206
- * @param encoding The expected string encoding.
2207
- */
2208
- function __promisify__(
2209
- fd: number,
2210
- string: string,
2211
- position?: number | null,
2212
- encoding?: BufferEncoding | null
2213
- ): Promise<{
2214
- bytesWritten: number;
2215
- buffer: string;
2216
- }>;
2217
- }
2218
- /**
2219
- * If `buffer` is a plain object, it must have an own (not inherited) `toString`function property.
2220
- *
2221
- * For detailed information, see the documentation of the asynchronous version of
2222
- * this API: {@link write}.
2223
- * @since v0.1.21
2224
- * @return The number of bytes written.
2225
- */
2226
- export function writeSync(fd: number, buffer: NodeJS.ArrayBufferView, offset?: number | null, length?: number | null, position?: number | null): number;
2227
- /**
2228
- * Synchronously writes `string` to the file referenced by the supplied file descriptor, returning the number of bytes written.
2229
- * @param fd A file descriptor.
2230
- * @param string A string to write.
2231
- * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2232
- * @param encoding The expected string encoding.
2233
- */
2234
- export function writeSync(fd: number, string: string, position?: number | null, encoding?: BufferEncoding | null): number;
2235
- export type ReadPosition = number | bigint;
2236
- export interface ReadSyncOptions {
2237
- /**
2238
- * @default 0
2239
- */
2240
- offset?: number | undefined;
2241
- /**
2242
- * @default `length of buffer`
2243
- */
2244
- length?: number | undefined;
2245
- /**
2246
- * @default null
2247
- */
2248
- position?: ReadPosition | null | undefined;
2249
- }
2250
- export interface ReadAsyncOptions<TBuffer extends NodeJS.ArrayBufferView> extends ReadSyncOptions {
2251
- buffer?: TBuffer;
2252
- }
2253
- /**
2254
- * Read data from the file specified by `fd`.
2255
- *
2256
- * The callback is given the three arguments, `(err, bytesRead, buffer)`.
2257
- *
2258
- * If the file is not modified concurrently, the end-of-file is reached when the
2259
- * number of bytes read is zero.
2260
- *
2261
- * If this method is invoked as its `util.promisify()` ed version, it returns
2262
- * a promise for an `Object` with `bytesRead` and `buffer` properties.
2263
- * @since v0.0.2
2264
- * @param buffer The buffer that the data will be written to.
2265
- * @param offset The position in `buffer` to write the data to.
2266
- * @param length The number of bytes to read.
2267
- * @param position Specifies where to begin reading from in the file. If `position` is `null` or `-1 `, data will be read from the current file position, and the file position will be updated. If
2268
- * `position` is an integer, the file position will be unchanged.
2269
- */
2270
- export function read<TBuffer extends NodeJS.ArrayBufferView>(
2271
- fd: number,
2272
- buffer: TBuffer,
2273
- offset: number,
2274
- length: number,
2275
- position: ReadPosition | null,
2276
- callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void
2277
- ): void;
2278
- /**
2279
- * Similar to the above `fs.read` function, this version takes an optional `options` object.
2280
- * If not otherwise specified in an `options` object,
2281
- * `buffer` defaults to `Buffer.alloc(16384)`,
2282
- * `offset` defaults to `0`,
2283
- * `length` defaults to `buffer.byteLength`, `- offset` as of Node 17.6.0
2284
- * `position` defaults to `null`
2285
- * @since v12.17.0, 13.11.0
2286
- */
2287
- export function read<TBuffer extends NodeJS.ArrayBufferView>(
2288
- fd: number,
2289
- options: ReadAsyncOptions<TBuffer>,
2290
- callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void
2291
- ): void;
2292
- export function read(
2293
- fd: number,
2294
- callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: NodeJS.ArrayBufferView) => void
2295
- ): void;
2296
- export namespace read {
2297
- /**
2298
- * @param fd A file descriptor.
2299
- * @param buffer The buffer that the data will be written to.
2300
- * @param offset The offset in the buffer at which to start writing.
2301
- * @param length The number of bytes to read.
2302
- * @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position.
2303
- */
2304
- function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(
2305
- fd: number,
2306
- buffer: TBuffer,
2307
- offset: number,
2308
- length: number,
2309
- position: number | null
2310
- ): Promise<{
2311
- bytesRead: number;
2312
- buffer: TBuffer;
2313
- }>;
2314
- function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(
2315
- fd: number,
2316
- options: ReadAsyncOptions<TBuffer>
2317
- ): Promise<{
2318
- bytesRead: number;
2319
- buffer: TBuffer;
2320
- }>;
2321
- function __promisify__(
2322
- fd: number
2323
- ): Promise<{
2324
- bytesRead: number;
2325
- buffer: NodeJS.ArrayBufferView;
2326
- }>;
2327
- }
2328
- /**
2329
- * Returns the number of `bytesRead`.
2330
- *
2331
- * For detailed information, see the documentation of the asynchronous version of
2332
- * this API: {@link read}.
2333
- * @since v0.1.21
2334
- */
2335
- export function readSync(fd: number, buffer: NodeJS.ArrayBufferView, offset: number, length: number, position: ReadPosition | null): number;
2336
- /**
2337
- * Similar to the above `fs.readSync` function, this version takes an optional `options` object.
2338
- * If no `options` object is specified, it will default with the above values.
2339
- */
2340
- export function readSync(fd: number, buffer: NodeJS.ArrayBufferView, opts?: ReadSyncOptions): number;
2341
- /**
2342
- * Asynchronously reads the entire contents of a file.
2343
- *
2344
- * ```js
2345
- * import { readFile } from 'fs';
2346
- *
2347
- * readFile('/etc/passwd', (err, data) => {
2348
- * if (err) throw err;
2349
- * console.log(data);
2350
- * });
2351
- * ```
2352
- *
2353
- * The callback is passed two arguments `(err, data)`, where `data` is the
2354
- * contents of the file.
2355
- *
2356
- * If no encoding is specified, then the raw buffer is returned.
2357
- *
2358
- * If `options` is a string, then it specifies the encoding:
2359
- *
2360
- * ```js
2361
- * import { readFile } from 'fs';
2362
- *
2363
- * readFile('/etc/passwd', 'utf8', callback);
2364
- * ```
2365
- *
2366
- * When the path is a directory, the behavior of `fs.readFile()` and {@link readFileSync} is platform-specific. On macOS, Linux, and Windows, an
2367
- * error will be returned. On FreeBSD, a representation of the directory's contents
2368
- * will be returned.
2369
- *
2370
- * ```js
2371
- * import { readFile } from 'fs';
2372
- *
2373
- * // macOS, Linux, and Windows
2374
- * readFile('<directory>', (err, data) => {
2375
- * // => [Error: EISDIR: illegal operation on a directory, read <directory>]
2376
- * });
2377
- *
2378
- * // FreeBSD
2379
- * readFile('<directory>', (err, data) => {
2380
- * // => null, <data>
2381
- * });
2382
- * ```
2383
- *
2384
- * It is possible to abort an ongoing request using an `AbortSignal`. If a
2385
- * request is aborted the callback is called with an `AbortError`:
2386
- *
2387
- * ```js
2388
- * import { readFile } from 'fs';
2389
- *
2390
- * const controller = new AbortController();
2391
- * const signal = controller.signal;
2392
- * readFile(fileInfo[0].name, { signal }, (err, buf) => {
2393
- * // ...
2394
- * });
2395
- * // When you want to abort the request
2396
- * controller.abort();
2397
- * ```
2398
- *
2399
- * The `fs.readFile()` function buffers the entire file. To minimize memory costs,
2400
- * when possible prefer streaming via `fs.createReadStream()`.
2401
- *
2402
- * Aborting an ongoing request does not abort individual operating
2403
- * system requests but rather the internal buffering `fs.readFile` performs.
2404
- * @since v0.1.29
2405
- * @param path filename or file descriptor
2406
- */
2407
- export function readFile(
2408
- path: PathOrFileDescriptor,
2409
- options:
2410
- | ({
2411
- encoding?: null | undefined;
2412
- flag?: string | undefined;
2413
- } & Abortable)
2414
- | undefined
2415
- | null,
2416
- callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void
2417
- ): void;
2418
- /**
2419
- * Asynchronously reads the entire contents of a file.
2420
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2421
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2422
- * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2423
- * If a flag is not provided, it defaults to `'r'`.
2424
- */
2425
- export function readFile(
2426
- path: PathOrFileDescriptor,
2427
- options:
2428
- | ({
2429
- encoding: BufferEncoding;
2430
- flag?: string | undefined;
2431
- } & Abortable)
2432
- | BufferEncoding,
2433
- callback: (err: NodeJS.ErrnoException | null, data: string) => void
2434
- ): void;
2435
- /**
2436
- * Asynchronously reads the entire contents of a file.
2437
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2438
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2439
- * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2440
- * If a flag is not provided, it defaults to `'r'`.
2441
- */
2442
- export function readFile(
2443
- path: PathOrFileDescriptor,
2444
- options:
2445
- | (ObjectEncodingOptions & {
2446
- flag?: string | undefined;
2447
- } & Abortable)
2448
- | BufferEncoding
2449
- | undefined
2450
- | null,
2451
- callback: (err: NodeJS.ErrnoException | null, data: string | Buffer) => void
2452
- ): void;
2453
- /**
2454
- * Asynchronously reads the entire contents of a file.
2455
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2456
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2457
- */
2458
- export function readFile(path: PathOrFileDescriptor, callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void): void;
2459
- export namespace readFile {
2460
- /**
2461
- * Asynchronously reads the entire contents of a file.
2462
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2463
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2464
- * @param options An object that may contain an optional flag.
2465
- * If a flag is not provided, it defaults to `'r'`.
2466
- */
2467
- function __promisify__(
2468
- path: PathOrFileDescriptor,
2469
- options?: {
2470
- encoding?: null | undefined;
2471
- flag?: string | undefined;
2472
- } | null
2473
- ): Promise<Buffer>;
2474
- /**
2475
- * Asynchronously reads the entire contents of a file.
2476
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2477
- * URL support is _experimental_.
2478
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2479
- * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2480
- * If a flag is not provided, it defaults to `'r'`.
2481
- */
2482
- function __promisify__(
2483
- path: PathOrFileDescriptor,
2484
- options:
2485
- | {
2486
- encoding: BufferEncoding;
2487
- flag?: string | undefined;
2488
- }
2489
- | BufferEncoding
2490
- ): Promise<string>;
2491
- /**
2492
- * Asynchronously reads the entire contents of a file.
2493
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2494
- * URL support is _experimental_.
2495
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2496
- * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2497
- * If a flag is not provided, it defaults to `'r'`.
2498
- */
2499
- function __promisify__(
2500
- path: PathOrFileDescriptor,
2501
- options?:
2502
- | (ObjectEncodingOptions & {
2503
- flag?: string | undefined;
2504
- })
2505
- | BufferEncoding
2506
- | null
2507
- ): Promise<string | Buffer>;
2508
- }
2509
- /**
2510
- * Returns the contents of the `path`.
2511
- *
2512
- * For detailed information, see the documentation of the asynchronous version of
2513
- * this API: {@link readFile}.
2514
- *
2515
- * If the `encoding` option is specified then this function returns a
2516
- * string. Otherwise it returns a buffer.
2517
- *
2518
- * Similar to {@link readFile}, when the path is a directory, the behavior of`fs.readFileSync()` is platform-specific.
2519
- *
2520
- * ```js
2521
- * import { readFileSync } from 'fs';
2522
- *
2523
- * // macOS, Linux, and Windows
2524
- * readFileSync('<directory>');
2525
- * // => [Error: EISDIR: illegal operation on a directory, read <directory>]
2526
- *
2527
- * // FreeBSD
2528
- * readFileSync('<directory>'); // => <data>
2529
- * ```
2530
- * @since v0.1.8
2531
- * @param path filename or file descriptor
2532
- */
2533
- export function readFileSync(
2534
- path: PathOrFileDescriptor,
2535
- options?: {
2536
- encoding?: null | undefined;
2537
- flag?: string | undefined;
2538
- } | null
2539
- ): Buffer;
2540
- /**
2541
- * Synchronously reads the entire contents of a file.
2542
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2543
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2544
- * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2545
- * If a flag is not provided, it defaults to `'r'`.
2546
- */
2547
- export function readFileSync(
2548
- path: PathOrFileDescriptor,
2549
- options:
2550
- | {
2551
- encoding: BufferEncoding;
2552
- flag?: string | undefined;
2553
- }
2554
- | BufferEncoding
2555
- ): string;
2556
- /**
2557
- * Synchronously reads the entire contents of a file.
2558
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2559
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2560
- * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2561
- * If a flag is not provided, it defaults to `'r'`.
2562
- */
2563
- export function readFileSync(
2564
- path: PathOrFileDescriptor,
2565
- options?:
2566
- | (ObjectEncodingOptions & {
2567
- flag?: string | undefined;
2568
- })
2569
- | BufferEncoding
2570
- | null
2571
- ): string | Buffer;
2572
- export type WriteFileOptions =
2573
- | (ObjectEncodingOptions &
2574
- Abortable & {
2575
- mode?: Mode | undefined;
2576
- flag?: string | undefined;
2577
- })
2578
- | BufferEncoding
2579
- | null;
2580
- /**
2581
- * When `file` is a filename, asynchronously writes data to the file, replacing the
2582
- * file if it already exists. `data` can be a string or a buffer.
2583
- *
2584
- * When `file` is a file descriptor, the behavior is similar to calling`fs.write()` directly (which is recommended). See the notes below on using
2585
- * a file descriptor.
2586
- *
2587
- * The `encoding` option is ignored if `data` is a buffer.
2588
- *
2589
- * The `mode` option only affects the newly created file. See {@link open} for more details.
2590
- *
2591
- * If `data` is a plain object, it must have an own (not inherited) `toString`function property.
2592
- *
2593
- * ```js
2594
- * import { writeFile } from 'fs';
2595
- * import { Buffer } from 'buffer';
2596
- *
2597
- * const data = new Uint8Array(Buffer.from('Hello Node.js'));
2598
- * writeFile('message.txt', data, (err) => {
2599
- * if (err) throw err;
2600
- * console.log('The file has been saved!');
2601
- * });
2602
- * ```
2603
- *
2604
- * If `options` is a string, then it specifies the encoding:
2605
- *
2606
- * ```js
2607
- * import { writeFile } from 'fs';
2608
- *
2609
- * writeFile('message.txt', 'Hello Node.js', 'utf8', callback);
2610
- * ```
2611
- *
2612
- * It is unsafe to use `fs.writeFile()` multiple times on the same file without
2613
- * waiting for the callback. For this scenario, {@link createWriteStream} is
2614
- * recommended.
2615
- *
2616
- * Similarly to `fs.readFile` \- `fs.writeFile` is a convenience method that
2617
- * performs multiple `write` calls internally to write the buffer passed to it.
2618
- * For performance sensitive code consider using {@link createWriteStream}.
2619
- *
2620
- * It is possible to use an `AbortSignal` to cancel an `fs.writeFile()`.
2621
- * Cancelation is "best effort", and some amount of data is likely still
2622
- * to be written.
2623
- *
2624
- * ```js
2625
- * import { writeFile } from 'fs';
2626
- * import { Buffer } from 'buffer';
2627
- *
2628
- * const controller = new AbortController();
2629
- * const { signal } = controller;
2630
- * const data = new Uint8Array(Buffer.from('Hello Node.js'));
2631
- * writeFile('message.txt', data, { signal }, (err) => {
2632
- * // When a request is aborted - the callback is called with an AbortError
2633
- * });
2634
- * // When the request should be aborted
2635
- * controller.abort();
2636
- * ```
2637
- *
2638
- * Aborting an ongoing request does not abort individual operating
2639
- * system requests but rather the internal buffering `fs.writeFile` performs.
2640
- * @since v0.1.29
2641
- * @param file filename or file descriptor
2642
- */
2643
- export function writeFile(file: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, options: WriteFileOptions, callback: NoParamCallback): void;
2644
- /**
2645
- * Asynchronously writes data to a file, replacing the file if it already exists.
2646
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2647
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2648
- * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
2649
- */
2650
- export function writeFile(path: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, callback: NoParamCallback): void;
2651
- export namespace writeFile {
2652
- /**
2653
- * Asynchronously writes data to a file, replacing the file if it already exists.
2654
- * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2655
- * URL support is _experimental_.
2656
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2657
- * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
2658
- * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
2659
- * If `encoding` is not supplied, the default of `'utf8'` is used.
2660
- * If `mode` is not supplied, the default of `0o666` is used.
2661
- * If `mode` is a string, it is parsed as an octal integer.
2662
- * If `flag` is not supplied, the default of `'w'` is used.
2663
- */
2664
- function __promisify__(path: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, options?: WriteFileOptions): Promise<void>;
2665
- }
2666
- /**
2667
- * Returns `undefined`.
2668
- *
2669
- * If `data` is a plain object, it must have an own (not inherited) `toString`function property.
2670
- *
2671
- * The `mode` option only affects the newly created file. See {@link open} for more details.
2672
- *
2673
- * For detailed information, see the documentation of the asynchronous version of
2674
- * this API: {@link writeFile}.
2675
- * @since v0.1.29
2676
- * @param file filename or file descriptor
2677
- */
2678
- export function writeFileSync(file: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, options?: WriteFileOptions): void;
2679
- /**
2680
- * Asynchronously append data to a file, creating the file if it does not yet
2681
- * exist. `data` can be a string or a `Buffer`.
2682
- *
2683
- * The `mode` option only affects the newly created file. See {@link open} for more details.
2684
- *
2685
- * ```js
2686
- * import { appendFile } from 'fs';
2687
- *
2688
- * appendFile('message.txt', 'data to append', (err) => {
2689
- * if (err) throw err;
2690
- * console.log('The "data to append" was appended to file!');
2691
- * });
2692
- * ```
2693
- *
2694
- * If `options` is a string, then it specifies the encoding:
2695
- *
2696
- * ```js
2697
- * import { appendFile } from 'fs';
2698
- *
2699
- * appendFile('message.txt', 'data to append', 'utf8', callback);
2700
- * ```
2701
- *
2702
- * The `path` may be specified as a numeric file descriptor that has been opened
2703
- * for appending (using `fs.open()` or `fs.openSync()`). The file descriptor will
2704
- * not be closed automatically.
2705
- *
2706
- * ```js
2707
- * import { open, close, appendFile } from 'fs';
2708
- *
2709
- * function closeFd(fd) {
2710
- * close(fd, (err) => {
2711
- * if (err) throw err;
2712
- * });
2713
- * }
2714
- *
2715
- * open('message.txt', 'a', (err, fd) => {
2716
- * if (err) throw err;
2717
- *
2718
- * try {
2719
- * appendFile(fd, 'data to append', 'utf8', (err) => {
2720
- * closeFd(fd);
2721
- * if (err) throw err;
2722
- * });
2723
- * } catch (err) {
2724
- * closeFd(fd);
2725
- * throw err;
2726
- * }
2727
- * });
2728
- * ```
2729
- * @since v0.6.7
2730
- * @param path filename or file descriptor
2731
- */
2732
- export function appendFile(path: PathOrFileDescriptor, data: string | Uint8Array, options: WriteFileOptions, callback: NoParamCallback): void;
2733
- /**
2734
- * Asynchronously append data to a file, creating the file if it does not exist.
2735
- * @param file A path to a file. If a URL is provided, it must use the `file:` protocol.
2736
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2737
- * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
2738
- */
2739
- export function appendFile(file: PathOrFileDescriptor, data: string | Uint8Array, callback: NoParamCallback): void;
2740
- export namespace appendFile {
2741
- /**
2742
- * Asynchronously append data to a file, creating the file if it does not exist.
2743
- * @param file A path to a file. If a URL is provided, it must use the `file:` protocol.
2744
- * URL support is _experimental_.
2745
- * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2746
- * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
2747
- * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
2748
- * If `encoding` is not supplied, the default of `'utf8'` is used.
2749
- * If `mode` is not supplied, the default of `0o666` is used.
2750
- * If `mode` is a string, it is parsed as an octal integer.
2751
- * If `flag` is not supplied, the default of `'a'` is used.
2752
- */
2753
- function __promisify__(file: PathOrFileDescriptor, data: string | Uint8Array, options?: WriteFileOptions): Promise<void>;
2754
- }
2755
- /**
2756
- * Synchronously append data to a file, creating the file if it does not yet
2757
- * exist. `data` can be a string or a `Buffer`.
2758
- *
2759
- * The `mode` option only affects the newly created file. See {@link open} for more details.
2760
- *
2761
- * ```js
2762
- * import { appendFileSync } from 'fs';
2763
- *
2764
- * try {
2765
- * appendFileSync('message.txt', 'data to append');
2766
- * console.log('The "data to append" was appended to file!');
2767
- * } catch (err) {
2768
- * // Handle the error
2769
- * }
2770
- * ```
2771
- *
2772
- * If `options` is a string, then it specifies the encoding:
2773
- *
2774
- * ```js
2775
- * import { appendFileSync } from 'fs';
2776
- *
2777
- * appendFileSync('message.txt', 'data to append', 'utf8');
2778
- * ```
2779
- *
2780
- * The `path` may be specified as a numeric file descriptor that has been opened
2781
- * for appending (using `fs.open()` or `fs.openSync()`). The file descriptor will
2782
- * not be closed automatically.
2783
- *
2784
- * ```js
2785
- * import { openSync, closeSync, appendFileSync } from 'fs';
2786
- *
2787
- * let fd;
2788
- *
2789
- * try {
2790
- * fd = openSync('message.txt', 'a');
2791
- * appendFileSync(fd, 'data to append', 'utf8');
2792
- * } catch (err) {
2793
- * // Handle the error
2794
- * } finally {
2795
- * if (fd !== undefined)
2796
- * closeSync(fd);
2797
- * }
2798
- * ```
2799
- * @since v0.6.7
2800
- * @param path filename or file descriptor
2801
- */
2802
- export function appendFileSync(path: PathOrFileDescriptor, data: string | Uint8Array, options?: WriteFileOptions): void;
2803
- /**
2804
- * Watch for changes on `filename`. The callback `listener` will be called each
2805
- * time the file is accessed.
2806
- *
2807
- * The `options` argument may be omitted. If provided, it should be an object. The`options` object may contain a boolean named `persistent` that indicates
2808
- * whether the process should continue to run as long as files are being watched.
2809
- * The `options` object may specify an `interval` property indicating how often the
2810
- * target should be polled in milliseconds.
2811
- *
2812
- * The `listener` gets two arguments the current stat object and the previous
2813
- * stat object:
2814
- *
2815
- * ```js
2816
- * import { watchFile } from 'fs';
2817
- *
2818
- * watchFile('message.text', (curr, prev) => {
2819
- * console.log(`the current mtime is: ${curr.mtime}`);
2820
- * console.log(`the previous mtime was: ${prev.mtime}`);
2821
- * });
2822
- * ```
2823
- *
2824
- * These stat objects are instances of `fs.Stat`. If the `bigint` option is `true`,
2825
- * the numeric values in these objects are specified as `BigInt`s.
2826
- *
2827
- * To be notified when the file was modified, not just accessed, it is necessary
2828
- * to compare `curr.mtimeMs` and `prev.mtimeMs`.
2829
- *
2830
- * When an `fs.watchFile` operation results in an `ENOENT` error, it
2831
- * will invoke the listener once, with all the fields zeroed (or, for dates, the
2832
- * Unix Epoch). If the file is created later on, the listener will be called
2833
- * again, with the latest stat objects. This is a change in functionality since
2834
- * v0.10.
2835
- *
2836
- * Using {@link watch} is more efficient than `fs.watchFile` and`fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and`fs.unwatchFile` when possible.
2837
- *
2838
- * When a file being watched by `fs.watchFile()` disappears and reappears,
2839
- * then the contents of `previous` in the second callback event (the file's
2840
- * reappearance) will be the same as the contents of `previous` in the first
2841
- * callback event (its disappearance).
2842
- *
2843
- * This happens when:
2844
- *
2845
- * * the file is deleted, followed by a restore
2846
- * * the file is renamed and then renamed a second time back to its original name
2847
- * @since v0.1.31
2848
- */
2849
- export interface WatchFileOptions {
2850
- bigint?: boolean | undefined;
2851
- persistent?: boolean | undefined;
2852
- interval?: number | undefined;
2853
- }
2854
- /**
2855
- * Watch for changes on `filename`. The callback `listener` will be called each
2856
- * time the file is accessed.
2857
- *
2858
- * The `options` argument may be omitted. If provided, it should be an object. The`options` object may contain a boolean named `persistent` that indicates
2859
- * whether the process should continue to run as long as files are being watched.
2860
- * The `options` object may specify an `interval` property indicating how often the
2861
- * target should be polled in milliseconds.
2862
- *
2863
- * The `listener` gets two arguments the current stat object and the previous
2864
- * stat object:
2865
- *
2866
- * ```js
2867
- * import { watchFile } from 'fs';
2868
- *
2869
- * watchFile('message.text', (curr, prev) => {
2870
- * console.log(`the current mtime is: ${curr.mtime}`);
2871
- * console.log(`the previous mtime was: ${prev.mtime}`);
2872
- * });
2873
- * ```
2874
- *
2875
- * These stat objects are instances of `fs.Stat`. If the `bigint` option is `true`,
2876
- * the numeric values in these objects are specified as `BigInt`s.
2877
- *
2878
- * To be notified when the file was modified, not just accessed, it is necessary
2879
- * to compare `curr.mtimeMs` and `prev.mtimeMs`.
2880
- *
2881
- * When an `fs.watchFile` operation results in an `ENOENT` error, it
2882
- * will invoke the listener once, with all the fields zeroed (or, for dates, the
2883
- * Unix Epoch). If the file is created later on, the listener will be called
2884
- * again, with the latest stat objects. This is a change in functionality since
2885
- * v0.10.
2886
- *
2887
- * Using {@link watch} is more efficient than `fs.watchFile` and`fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and`fs.unwatchFile` when possible.
2888
- *
2889
- * When a file being watched by `fs.watchFile()` disappears and reappears,
2890
- * then the contents of `previous` in the second callback event (the file's
2891
- * reappearance) will be the same as the contents of `previous` in the first
2892
- * callback event (its disappearance).
2893
- *
2894
- * This happens when:
2895
- *
2896
- * * the file is deleted, followed by a restore
2897
- * * the file is renamed and then renamed a second time back to its original name
2898
- * @since v0.1.31
2899
- */
2900
- export function watchFile(
2901
- filename: PathLike,
2902
- options:
2903
- | (WatchFileOptions & {
2904
- bigint?: false | undefined;
2905
- })
2906
- | undefined,
2907
- listener: (curr: Stats, prev: Stats) => void
2908
- ): StatWatcher;
2909
- export function watchFile(
2910
- filename: PathLike,
2911
- options:
2912
- | (WatchFileOptions & {
2913
- bigint: true;
2914
- })
2915
- | undefined,
2916
- listener: (curr: BigIntStats, prev: BigIntStats) => void
2917
- ): StatWatcher;
2918
- /**
2919
- * Watch for changes on `filename`. The callback `listener` will be called each time the file is accessed.
2920
- * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
2921
- */
2922
- export function watchFile(filename: PathLike, listener: (curr: Stats, prev: Stats) => void): StatWatcher;
2923
- /**
2924
- * Stop watching for changes on `filename`. If `listener` is specified, only that
2925
- * particular listener is removed. Otherwise, _all_ listeners are removed,
2926
- * effectively stopping watching of `filename`.
2927
- *
2928
- * Calling `fs.unwatchFile()` with a filename that is not being watched is a
2929
- * no-op, not an error.
2930
- *
2931
- * Using {@link watch} is more efficient than `fs.watchFile()` and`fs.unwatchFile()`. `fs.watch()` should be used instead of `fs.watchFile()`and `fs.unwatchFile()` when possible.
2932
- * @since v0.1.31
2933
- * @param listener Optional, a listener previously attached using `fs.watchFile()`
2934
- */
2935
- export function unwatchFile(filename: PathLike, listener?: (curr: Stats, prev: Stats) => void): void;
2936
- export interface WatchOptions extends Abortable {
2937
- encoding?: BufferEncoding | 'buffer' | undefined;
2938
- persistent?: boolean | undefined;
2939
- recursive?: boolean | undefined;
2940
- }
2941
- export type WatchEventType = 'rename' | 'change';
2942
- export type WatchListener<T> = (event: WatchEventType, filename: T) => void;
2943
- /**
2944
- * Watch for changes on `filename`, where `filename` is either a file or a
2945
- * directory.
2946
- *
2947
- * The second argument is optional. If `options` is provided as a string, it
2948
- * specifies the `encoding`. Otherwise `options` should be passed as an object.
2949
- *
2950
- * The listener callback gets two arguments `(eventType, filename)`. `eventType`is either `'rename'` or `'change'`, and `filename` is the name of the file
2951
- * which triggered the event.
2952
- *
2953
- * On most platforms, `'rename'` is emitted whenever a filename appears or
2954
- * disappears in the directory.
2955
- *
2956
- * The listener callback is attached to the `'change'` event fired by `fs.FSWatcher`, but it is not the same thing as the `'change'` value of`eventType`.
2957
- *
2958
- * If a `signal` is passed, aborting the corresponding AbortController will close
2959
- * the returned `fs.FSWatcher`.
2960
- * @since v0.5.10
2961
- * @param listener
2962
- */
2963
- export function watch(
2964
- filename: PathLike,
2965
- options:
2966
- | (WatchOptions & {
2967
- encoding: 'buffer';
2968
- })
2969
- | 'buffer',
2970
- listener?: WatchListener<Buffer>
2971
- ): FSWatcher;
2972
- /**
2973
- * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.
2974
- * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
2975
- * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.
2976
- * If `encoding` is not supplied, the default of `'utf8'` is used.
2977
- * If `persistent` is not supplied, the default of `true` is used.
2978
- * If `recursive` is not supplied, the default of `false` is used.
2979
- */
2980
- export function watch(filename: PathLike, options?: WatchOptions | BufferEncoding | null, listener?: WatchListener<string>): FSWatcher;
2981
- /**
2982
- * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.
2983
- * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
2984
- * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.
2985
- * If `encoding` is not supplied, the default of `'utf8'` is used.
2986
- * If `persistent` is not supplied, the default of `true` is used.
2987
- * If `recursive` is not supplied, the default of `false` is used.
2988
- */
2989
- export function watch(filename: PathLike, options: WatchOptions | string, listener?: WatchListener<string | Buffer>): FSWatcher;
2990
- /**
2991
- * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.
2992
- * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
2993
- */
2994
- export function watch(filename: PathLike, listener?: WatchListener<string>): FSWatcher;
2995
- /**
2996
- * Test whether or not the given path exists by checking with the file system.
2997
- * Then call the `callback` argument with either true or false:
2998
- *
2999
- * ```js
3000
- * import { exists } from 'fs';
3001
- *
3002
- * exists('/etc/passwd', (e) => {
3003
- * console.log(e ? 'it exists' : 'no passwd!');
3004
- * });
3005
- * ```
3006
- *
3007
- * **The parameters for this callback are not consistent with other Node.js**
3008
- * **callbacks.** Normally, the first parameter to a Node.js callback is an `err`parameter, optionally followed by other parameters. The `fs.exists()` callback
3009
- * has only one boolean parameter. This is one reason `fs.access()` is recommended
3010
- * instead of `fs.exists()`.
3011
- *
3012
- * Using `fs.exists()` to check for the existence of a file before calling`fs.open()`, `fs.readFile()` or `fs.writeFile()` is not recommended. Doing
3013
- * so introduces a race condition, since other processes may change the file's
3014
- * state between the two calls. Instead, user code should open/read/write the
3015
- * file directly and handle the error raised if the file does not exist.
3016
- *
3017
- * **write (NOT RECOMMENDED)**
3018
- *
3019
- * ```js
3020
- * import { exists, open, close } from 'fs';
3021
- *
3022
- * exists('myfile', (e) => {
3023
- * if (e) {
3024
- * console.error('myfile already exists');
3025
- * } else {
3026
- * open('myfile', 'wx', (err, fd) => {
3027
- * if (err) throw err;
3028
- *
3029
- * try {
3030
- * writeMyData(fd);
3031
- * } finally {
3032
- * close(fd, (err) => {
3033
- * if (err) throw err;
3034
- * });
3035
- * }
3036
- * });
3037
- * }
3038
- * });
3039
- * ```
3040
- *
3041
- * **write (RECOMMENDED)**
3042
- *
3043
- * ```js
3044
- * import { open, close } from 'fs';
3045
- * open('myfile', 'wx', (err, fd) => {
3046
- * if (err) {
3047
- * if (err.code === 'EEXIST') {
3048
- * console.error('myfile already exists');
3049
- * return;
3050
- * }
3051
- *
3052
- * throw err;
3053
- * }
3054
- *
3055
- * try {
3056
- * writeMyData(fd);
3057
- * } finally {
3058
- * close(fd, (err) => {
3059
- * if (err) throw err;
3060
- * });
3061
- * }
3062
- * });
3063
- * ```
3064
- *
3065
- * **read (NOT RECOMMENDED)**
3066
- *
3067
- * ```js
3068
- * import { open, close, exists } from 'fs';
3069
- *
3070
- * exists('myfile', (e) => {
3071
- * if (e) {
3072
- * open('myfile', 'r', (err, fd) => {
3073
- * if (err) throw err;
3074
- *
3075
- * try {
3076
- * readMyData(fd);
3077
- * } finally {
3078
- * close(fd, (err) => {
3079
- * if (err) throw err;
3080
- * });
3081
- * }
3082
- * });
3083
- * } else {
3084
- * console.error('myfile does not exist');
3085
- * }
3086
- * });
3087
- * ```
3088
- *
3089
- * **read (RECOMMENDED)**
3090
- *
3091
- * ```js
3092
- * import { open, close } from 'fs';
3093
- *
3094
- * open('myfile', 'r', (err, fd) => {
3095
- * if (err) {
3096
- * if (err.code === 'ENOENT') {
3097
- * console.error('myfile does not exist');
3098
- * return;
3099
- * }
3100
- *
3101
- * throw err;
3102
- * }
3103
- *
3104
- * try {
3105
- * readMyData(fd);
3106
- * } finally {
3107
- * close(fd, (err) => {
3108
- * if (err) throw err;
3109
- * });
3110
- * }
3111
- * });
3112
- * ```
3113
- *
3114
- * The "not recommended" examples above check for existence and then use the
3115
- * file; the "recommended" examples are better because they use the file directly
3116
- * and handle the error, if any.
3117
- *
3118
- * In general, check for the existence of a file only if the file won’t be
3119
- * used directly, for example when its existence is a signal from another
3120
- * process.
3121
- * @since v0.0.2
3122
- * @deprecated Since v1.0.0 - Use {@link stat} or {@link access} instead.
3123
- */
3124
- export function exists(path: PathLike, callback: (exists: boolean) => void): void;
3125
- /** @deprecated */
3126
- export namespace exists {
3127
- /**
3128
- * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
3129
- * URL support is _experimental_.
3130
- */
3131
- function __promisify__(path: PathLike): Promise<boolean>;
3132
- }
3133
- /**
3134
- * Returns `true` if the path exists, `false` otherwise.
3135
- *
3136
- * For detailed information, see the documentation of the asynchronous version of
3137
- * this API: {@link exists}.
3138
- *
3139
- * `fs.exists()` is deprecated, but `fs.existsSync()` is not. The `callback`parameter to `fs.exists()` accepts parameters that are inconsistent with other
3140
- * Node.js callbacks. `fs.existsSync()` does not use a callback.
3141
- *
3142
- * ```js
3143
- * import { existsSync } from 'fs';
3144
- *
3145
- * if (existsSync('/etc/passwd'))
3146
- * console.log('The path exists.');
3147
- * ```
3148
- * @since v0.1.21
3149
- */
3150
- export function existsSync(path: PathLike): boolean;
3151
- export namespace constants {
3152
- // File Access Constants
3153
- /** Constant for fs.access(). File is visible to the calling process. */
3154
- const F_OK: number;
3155
- /** Constant for fs.access(). File can be read by the calling process. */
3156
- const R_OK: number;
3157
- /** Constant for fs.access(). File can be written by the calling process. */
3158
- const W_OK: number;
3159
- /** Constant for fs.access(). File can be executed by the calling process. */
3160
- const X_OK: number;
3161
- // File Copy Constants
3162
- /** Constant for fs.copyFile. Flag indicating the destination file should not be overwritten if it already exists. */
3163
- const COPYFILE_EXCL: number;
3164
- /**
3165
- * Constant for fs.copyFile. copy operation will attempt to create a copy-on-write reflink.
3166
- * If the underlying platform does not support copy-on-write, then a fallback copy mechanism is used.
3167
- */
3168
- const COPYFILE_FICLONE: number;
3169
- /**
3170
- * Constant for fs.copyFile. Copy operation will attempt to create a copy-on-write reflink.
3171
- * If the underlying platform does not support copy-on-write, then the operation will fail with an error.
3172
- */
3173
- const COPYFILE_FICLONE_FORCE: number;
3174
- // File Open Constants
3175
- /** Constant for fs.open(). Flag indicating to open a file for read-only access. */
3176
- const O_RDONLY: number;
3177
- /** Constant for fs.open(). Flag indicating to open a file for write-only access. */
3178
- const O_WRONLY: number;
3179
- /** Constant for fs.open(). Flag indicating to open a file for read-write access. */
3180
- const O_RDWR: number;
3181
- /** Constant for fs.open(). Flag indicating to create the file if it does not already exist. */
3182
- const O_CREAT: number;
3183
- /** Constant for fs.open(). Flag indicating that opening a file should fail if the O_CREAT flag is set and the file already exists. */
3184
- const O_EXCL: number;
3185
- /**
3186
- * Constant for fs.open(). Flag indicating that if path identifies a terminal device,
3187
- * opening the path shall not cause that terminal to become the controlling terminal for the process
3188
- * (if the process does not already have one).
3189
- */
3190
- const O_NOCTTY: number;
3191
- /** Constant for fs.open(). Flag indicating that if the file exists and is a regular file, and the file is opened successfully for write access, its length shall be truncated to zero. */
3192
- const O_TRUNC: number;
3193
- /** Constant for fs.open(). Flag indicating that data will be appended to the end of the file. */
3194
- const O_APPEND: number;
3195
- /** Constant for fs.open(). Flag indicating that the open should fail if the path is not a directory. */
3196
- const O_DIRECTORY: number;
3197
- /**
3198
- * constant for fs.open().
3199
- * Flag indicating reading accesses to the file system will no longer result in
3200
- * an update to the atime information associated with the file.
3201
- * This flag is available on Linux operating systems only.
3202
- */
3203
- const O_NOATIME: number;
3204
- /** Constant for fs.open(). Flag indicating that the open should fail if the path is a symbolic link. */
3205
- const O_NOFOLLOW: number;
3206
- /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O. */
3207
- const O_SYNC: number;
3208
- /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O with write operations waiting for data integrity. */
3209
- const O_DSYNC: number;
3210
- /** Constant for fs.open(). Flag indicating to open the symbolic link itself rather than the resource it is pointing to. */
3211
- const O_SYMLINK: number;
3212
- /** Constant for fs.open(). When set, an attempt will be made to minimize caching effects of file I/O. */
3213
- const O_DIRECT: number;
3214
- /** Constant for fs.open(). Flag indicating to open the file in nonblocking mode when possible. */
3215
- const O_NONBLOCK: number;
3216
- // File Type Constants
3217
- /** Constant for fs.Stats mode property for determining a file's type. Bit mask used to extract the file type code. */
3218
- const S_IFMT: number;
3219
- /** Constant for fs.Stats mode property for determining a file's type. File type constant for a regular file. */
3220
- const S_IFREG: number;
3221
- /** Constant for fs.Stats mode property for determining a file's type. File type constant for a directory. */
3222
- const S_IFDIR: number;
3223
- /** Constant for fs.Stats mode property for determining a file's type. File type constant for a character-oriented device file. */
3224
- const S_IFCHR: number;
3225
- /** Constant for fs.Stats mode property for determining a file's type. File type constant for a block-oriented device file. */
3226
- const S_IFBLK: number;
3227
- /** Constant for fs.Stats mode property for determining a file's type. File type constant for a FIFO/pipe. */
3228
- const S_IFIFO: number;
3229
- /** Constant for fs.Stats mode property for determining a file's type. File type constant for a symbolic link. */
3230
- const S_IFLNK: number;
3231
- /** Constant for fs.Stats mode property for determining a file's type. File type constant for a socket. */
3232
- const S_IFSOCK: number;
3233
- // File Mode Constants
3234
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by owner. */
3235
- const S_IRWXU: number;
3236
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by owner. */
3237
- const S_IRUSR: number;
3238
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by owner. */
3239
- const S_IWUSR: number;
3240
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by owner. */
3241
- const S_IXUSR: number;
3242
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by group. */
3243
- const S_IRWXG: number;
3244
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by group. */
3245
- const S_IRGRP: number;
3246
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by group. */
3247
- const S_IWGRP: number;
3248
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by group. */
3249
- const S_IXGRP: number;
3250
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by others. */
3251
- const S_IRWXO: number;
3252
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by others. */
3253
- const S_IROTH: number;
3254
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by others. */
3255
- const S_IWOTH: number;
3256
- /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by others. */
3257
- const S_IXOTH: number;
3258
- /**
3259
- * When set, a memory file mapping is used to access the file. This flag
3260
- * is available on Windows operating systems only. On other operating systems,
3261
- * this flag is ignored.
3262
- */
3263
- const UV_FS_O_FILEMAP: number;
3264
- }
3265
- /**
3266
- * Tests a user's permissions for the file or directory specified by `path`.
3267
- * The `mode` argument is an optional integer that specifies the accessibility
3268
- * checks to be performed. Check `File access constants` for possible values
3269
- * of `mode`. It is possible to create a mask consisting of the bitwise OR of
3270
- * two or more values (e.g. `fs.constants.W_OK | fs.constants.R_OK`).
3271
- *
3272
- * The final argument, `callback`, is a callback function that is invoked with
3273
- * a possible error argument. If any of the accessibility checks fail, the error
3274
- * argument will be an `Error` object. The following examples check if`package.json` exists, and if it is readable or writable.
3275
- *
3276
- * ```js
3277
- * import { access, constants } from 'fs';
3278
- *
3279
- * const file = 'package.json';
3280
- *
3281
- * // Check if the file exists in the current directory.
3282
- * access(file, constants.F_OK, (err) => {
3283
- * console.log(`${file} ${err ? 'does not exist' : 'exists'}`);
3284
- * });
3285
- *
3286
- * // Check if the file is readable.
3287
- * access(file, constants.R_OK, (err) => {
3288
- * console.log(`${file} ${err ? 'is not readable' : 'is readable'}`);
3289
- * });
3290
- *
3291
- * // Check if the file is writable.
3292
- * access(file, constants.W_OK, (err) => {
3293
- * console.log(`${file} ${err ? 'is not writable' : 'is writable'}`);
3294
- * });
3295
- *
3296
- * // Check if the file exists in the current directory, and if it is writable.
3297
- * access(file, constants.F_OK | constants.W_OK, (err) => {
3298
- * if (err) {
3299
- * console.error(
3300
- * `${file} ${err.code === 'ENOENT' ? 'does not exist' : 'is read-only'}`);
3301
- * } else {
3302
- * console.log(`${file} exists, and it is writable`);
3303
- * }
3304
- * });
3305
- * ```
3306
- *
3307
- * Do not use `fs.access()` to check for the accessibility of a file before calling`fs.open()`, `fs.readFile()` or `fs.writeFile()`. Doing
3308
- * so introduces a race condition, since other processes may change the file's
3309
- * state between the two calls. Instead, user code should open/read/write the
3310
- * file directly and handle the error raised if the file is not accessible.
3311
- *
3312
- * **write (NOT RECOMMENDED)**
3313
- *
3314
- * ```js
3315
- * import { access, open, close } from 'fs';
3316
- *
3317
- * access('myfile', (err) => {
3318
- * if (!err) {
3319
- * console.error('myfile already exists');
3320
- * return;
3321
- * }
3322
- *
3323
- * open('myfile', 'wx', (err, fd) => {
3324
- * if (err) throw err;
3325
- *
3326
- * try {
3327
- * writeMyData(fd);
3328
- * } finally {
3329
- * close(fd, (err) => {
3330
- * if (err) throw err;
3331
- * });
3332
- * }
3333
- * });
3334
- * });
3335
- * ```
3336
- *
3337
- * **write (RECOMMENDED)**
3338
- *
3339
- * ```js
3340
- * import { open, close } from 'fs';
3341
- *
3342
- * open('myfile', 'wx', (err, fd) => {
3343
- * if (err) {
3344
- * if (err.code === 'EEXIST') {
3345
- * console.error('myfile already exists');
3346
- * return;
3347
- * }
3348
- *
3349
- * throw err;
3350
- * }
3351
- *
3352
- * try {
3353
- * writeMyData(fd);
3354
- * } finally {
3355
- * close(fd, (err) => {
3356
- * if (err) throw err;
3357
- * });
3358
- * }
3359
- * });
3360
- * ```
3361
- *
3362
- * **read (NOT RECOMMENDED)**
3363
- *
3364
- * ```js
3365
- * import { access, open, close } from 'fs';
3366
- * access('myfile', (err) => {
3367
- * if (err) {
3368
- * if (err.code === 'ENOENT') {
3369
- * console.error('myfile does not exist');
3370
- * return;
3371
- * }
3372
- *
3373
- * throw err;
3374
- * }
3375
- *
3376
- * open('myfile', 'r', (err, fd) => {
3377
- * if (err) throw err;
3378
- *
3379
- * try {
3380
- * readMyData(fd);
3381
- * } finally {
3382
- * close(fd, (err) => {
3383
- * if (err) throw err;
3384
- * });
3385
- * }
3386
- * });
3387
- * });
3388
- * ```
3389
- *
3390
- * **read (RECOMMENDED)**
3391
- *
3392
- * ```js
3393
- * import { open, close } from 'fs';
3394
- *
3395
- * open('myfile', 'r', (err, fd) => {
3396
- * if (err) {
3397
- * if (err.code === 'ENOENT') {
3398
- * console.error('myfile does not exist');
3399
- * return;
3400
- * }
3401
- *
3402
- * throw err;
3403
- * }
3404
- *
3405
- * try {
3406
- * readMyData(fd);
3407
- * } finally {
3408
- * close(fd, (err) => {
3409
- * if (err) throw err;
3410
- * });
3411
- * }
3412
- * });
3413
- * ```
3414
- *
3415
- * The "not recommended" examples above check for accessibility and then use the
3416
- * file; the "recommended" examples are better because they use the file directly
3417
- * and handle the error, if any.
3418
- *
3419
- * In general, check for the accessibility of a file only if the file will not be
3420
- * used directly, for example when its accessibility is a signal from another
3421
- * process.
3422
- *
3423
- * On Windows, access-control policies (ACLs) on a directory may limit access to
3424
- * a file or directory. The `fs.access()` function, however, does not check the
3425
- * ACL and therefore may report that a path is accessible even if the ACL restricts
3426
- * the user from reading or writing to it.
3427
- * @since v0.11.15
3428
- * @param [mode=fs.constants.F_OK]
3429
- */
3430
- export function access(path: PathLike, mode: number | undefined, callback: NoParamCallback): void;
3431
- /**
3432
- * Asynchronously tests a user's permissions for the file specified by path.
3433
- * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
3434
- */
3435
- export function access(path: PathLike, callback: NoParamCallback): void;
3436
- export namespace access {
3437
- /**
3438
- * Asynchronously tests a user's permissions for the file specified by path.
3439
- * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
3440
- * URL support is _experimental_.
3441
- */
3442
- function __promisify__(path: PathLike, mode?: number): Promise<void>;
3443
- }
3444
- /**
3445
- * Synchronously tests a user's permissions for the file or directory specified
3446
- * by `path`. The `mode` argument is an optional integer that specifies the
3447
- * accessibility checks to be performed. Check `File access constants` for
3448
- * possible values of `mode`. It is possible to create a mask consisting of
3449
- * the bitwise OR of two or more values
3450
- * (e.g. `fs.constants.W_OK | fs.constants.R_OK`).
3451
- *
3452
- * If any of the accessibility checks fail, an `Error` will be thrown. Otherwise,
3453
- * the method will return `undefined`.
3454
- *
3455
- * ```js
3456
- * import { accessSync, constants } from 'fs';
3457
- *
3458
- * try {
3459
- * accessSync('etc/passwd', constants.R_OK | constants.W_OK);
3460
- * console.log('can read/write');
3461
- * } catch (err) {
3462
- * console.error('no access!');
3463
- * }
3464
- * ```
3465
- * @since v0.11.15
3466
- * @param [mode=fs.constants.F_OK]
3467
- */
3468
- export function accessSync(path: PathLike, mode?: number): void;
3469
- interface StreamOptions {
3470
- flags?: string | undefined;
3471
- encoding?: BufferEncoding | undefined;
3472
- fd?: number | promises.FileHandle | undefined;
3473
- mode?: number | undefined;
3474
- autoClose?: boolean | undefined;
3475
- /**
3476
- * @default false
3477
- */
3478
- emitClose?: boolean | undefined;
3479
- start?: number | undefined;
3480
- highWaterMark?: number | undefined;
3481
- }
3482
- interface ReadStreamOptions extends StreamOptions {
3483
- end?: number | undefined;
3484
- }
3485
- /**
3486
- * Unlike the 16 kb default `highWaterMark` for a `stream.Readable`, the stream
3487
- * returned by this method has a default `highWaterMark` of 64 kb.
3488
- *
3489
- * `options` can include `start` and `end` values to read a range of bytes from
3490
- * the file instead of the entire file. Both `start` and `end` are inclusive and
3491
- * start counting at 0, allowed values are in the
3492
- * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. If `fd` is specified and `start` is
3493
- * omitted or `undefined`, `fs.createReadStream()` reads sequentially from the
3494
- * current file position. The `encoding` can be any one of those accepted by `Buffer`.
3495
- *
3496
- * If `fd` is specified, `ReadStream` will ignore the `path` argument and will use
3497
- * the specified file descriptor. This means that no `'open'` event will be
3498
- * emitted. `fd` should be blocking; non-blocking `fd`s should be passed to `net.Socket`.
3499
- *
3500
- * If `fd` points to a character device that only supports blocking reads
3501
- * (such as keyboard or sound card), read operations do not finish until data is
3502
- * available. This can prevent the process from exiting and the stream from
3503
- * closing naturally.
3504
- *
3505
- * By default, the stream will emit a `'close'` event after it has been
3506
- * destroyed. Set the `emitClose` option to `false` to change this behavior.
3507
- *
3508
- * By providing the `fs` option, it is possible to override the corresponding `fs`implementations for `open`, `read`, and `close`. When providing the `fs` option,
3509
- * an override for `read` is required. If no `fd` is provided, an override for`open` is also required. If `autoClose` is `true`, an override for `close` is
3510
- * also required.
3511
- *
3512
- * ```js
3513
- * import { createReadStream } from 'fs';
3514
- *
3515
- * // Create a stream from some character device.
3516
- * const stream = createReadStream('/dev/input/event0');
3517
- * setTimeout(() => {
3518
- * stream.close(); // This may not close the stream.
3519
- * // Artificially marking end-of-stream, as if the underlying resource had
3520
- * // indicated end-of-file by itself, allows the stream to close.
3521
- * // This does not cancel pending read operations, and if there is such an
3522
- * // operation, the process may still not be able to exit successfully
3523
- * // until it finishes.
3524
- * stream.push(null);
3525
- * stream.read(0);
3526
- * }, 100);
3527
- * ```
3528
- *
3529
- * If `autoClose` is false, then the file descriptor won't be closed, even if
3530
- * there's an error. It is the application's responsibility to close it and make
3531
- * sure there's no file descriptor leak. If `autoClose` is set to true (default
3532
- * behavior), on `'error'` or `'end'` the file descriptor will be closed
3533
- * automatically.
3534
- *
3535
- * `mode` sets the file mode (permission and sticky bits), but only if the
3536
- * file was created.
3537
- *
3538
- * An example to read the last 10 bytes of a file which is 100 bytes long:
3539
- *
3540
- * ```js
3541
- * import { createReadStream } from 'fs';
3542
- *
3543
- * createReadStream('sample.txt', { start: 90, end: 99 });
3544
- * ```
3545
- *
3546
- * If `options` is a string, then it specifies the encoding.
3547
- * @since v0.1.31
3548
- */
3549
- export function createReadStream(path: PathLike, options?: BufferEncoding | ReadStreamOptions): ReadStream;
3550
- /**
3551
- * `options` may also include a `start` option to allow writing data at some
3552
- * position past the beginning of the file, allowed values are in the
3553
- * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. Modifying a file rather than replacing
3554
- * it may require the `flags` option to be set to `r+` rather than the default `w`.
3555
- * The `encoding` can be any one of those accepted by `Buffer`.
3556
- *
3557
- * If `autoClose` is set to true (default behavior) on `'error'` or `'finish'`the file descriptor will be closed automatically. If `autoClose` is false,
3558
- * then the file descriptor won't be closed, even if there's an error.
3559
- * It is the application's responsibility to close it and make sure there's no
3560
- * file descriptor leak.
3561
- *
3562
- * By default, the stream will emit a `'close'` event after it has been
3563
- * destroyed. Set the `emitClose` option to `false` to change this behavior.
3564
- *
3565
- * By providing the `fs` option it is possible to override the corresponding `fs`implementations for `open`, `write`, `writev` and `close`. Overriding `write()`without `writev()` can reduce
3566
- * performance as some optimizations (`_writev()`)
3567
- * will be disabled. When providing the `fs` option, overrides for at least one of`write` and `writev` are required. If no `fd` option is supplied, an override
3568
- * for `open` is also required. If `autoClose` is `true`, an override for `close`is also required.
3569
- *
3570
- * Like `fs.ReadStream`, if `fd` is specified, `fs.WriteStream` will ignore the`path` argument and will use the specified file descriptor. This means that no`'open'` event will be
3571
- * emitted. `fd` should be blocking; non-blocking `fd`s
3572
- * should be passed to `net.Socket`.
3573
- *
3574
- * If `options` is a string, then it specifies the encoding.
3575
- * @since v0.1.31
3576
- */
3577
- export function createWriteStream(path: PathLike, options?: BufferEncoding | StreamOptions): WriteStream;
3578
- /**
3579
- * Forces all currently queued I/O operations associated with the file to the
3580
- * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. No arguments other
3581
- * than a possible
3582
- * exception are given to the completion callback.
3583
- * @since v0.1.96
3584
- */
3585
- export function fdatasync(fd: number, callback: NoParamCallback): void;
3586
- export namespace fdatasync {
3587
- /**
3588
- * Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device.
3589
- * @param fd A file descriptor.
3590
- */
3591
- function __promisify__(fd: number): Promise<void>;
3592
- }
3593
- /**
3594
- * Forces all currently queued I/O operations associated with the file to the
3595
- * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. Returns `undefined`.
3596
- * @since v0.1.96
3597
- */
3598
- export function fdatasyncSync(fd: number): void;
3599
- /**
3600
- * Asynchronously copies `src` to `dest`. By default, `dest` is overwritten if it
3601
- * already exists. No arguments other than a possible exception are given to the
3602
- * callback function. Node.js makes no guarantees about the atomicity of the copy
3603
- * operation. If an error occurs after the destination file has been opened for
3604
- * writing, Node.js will attempt to remove the destination.
3605
- *
3606
- * `mode` is an optional integer that specifies the behavior
3607
- * of the copy operation. It is possible to create a mask consisting of the bitwise
3608
- * OR of two or more values (e.g.`fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`).
3609
- *
3610
- * * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already
3611
- * exists.
3612
- * * `fs.constants.COPYFILE_FICLONE`: The copy operation will attempt to create a
3613
- * copy-on-write reflink. If the platform does not support copy-on-write, then a
3614
- * fallback copy mechanism is used.
3615
- * * `fs.constants.COPYFILE_FICLONE_FORCE`: The copy operation will attempt to
3616
- * create a copy-on-write reflink. If the platform does not support
3617
- * copy-on-write, then the operation will fail.
3618
- *
3619
- * ```js
3620
- * import { copyFile, constants } from 'fs';
3621
- *
3622
- * function callback(err) {
3623
- * if (err) throw err;
3624
- * console.log('source.txt was copied to destination.txt');
3625
- * }
3626
- *
3627
- * // destination.txt will be created or overwritten by default.
3628
- * copyFile('source.txt', 'destination.txt', callback);
3629
- *
3630
- * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.
3631
- * copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);
3632
- * ```
3633
- * @since v8.5.0
3634
- * @param src source filename to copy
3635
- * @param dest destination filename of the copy operation
3636
- * @param [mode=0] modifiers for copy operation.
3637
- */
3638
- export function copyFile(src: PathLike, dest: PathLike, callback: NoParamCallback): void;
3639
- export function copyFile(src: PathLike, dest: PathLike, mode: number, callback: NoParamCallback): void;
3640
- export namespace copyFile {
3641
- function __promisify__(src: PathLike, dst: PathLike, mode?: number): Promise<void>;
3642
- }
3643
- /**
3644
- * Synchronously copies `src` to `dest`. By default, `dest` is overwritten if it
3645
- * already exists. Returns `undefined`. Node.js makes no guarantees about the
3646
- * atomicity of the copy operation. If an error occurs after the destination file
3647
- * has been opened for writing, Node.js will attempt to remove the destination.
3648
- *
3649
- * `mode` is an optional integer that specifies the behavior
3650
- * of the copy operation. It is possible to create a mask consisting of the bitwise
3651
- * OR of two or more values (e.g.`fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`).
3652
- *
3653
- * * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already
3654
- * exists.
3655
- * * `fs.constants.COPYFILE_FICLONE`: The copy operation will attempt to create a
3656
- * copy-on-write reflink. If the platform does not support copy-on-write, then a
3657
- * fallback copy mechanism is used.
3658
- * * `fs.constants.COPYFILE_FICLONE_FORCE`: The copy operation will attempt to
3659
- * create a copy-on-write reflink. If the platform does not support
3660
- * copy-on-write, then the operation will fail.
3661
- *
3662
- * ```js
3663
- * import { copyFileSync, constants } from 'fs';
3664
- *
3665
- * // destination.txt will be created or overwritten by default.
3666
- * copyFileSync('source.txt', 'destination.txt');
3667
- * console.log('source.txt was copied to destination.txt');
3668
- *
3669
- * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.
3670
- * copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
3671
- * ```
3672
- * @since v8.5.0
3673
- * @param src source filename to copy
3674
- * @param dest destination filename of the copy operation
3675
- * @param [mode=0] modifiers for copy operation.
3676
- */
3677
- export function copyFileSync(src: PathLike, dest: PathLike, mode?: number): void;
3678
- /**
3679
- * Write an array of `ArrayBufferView`s to the file specified by `fd` using`writev()`.
3680
- *
3681
- * `position` is the offset from the beginning of the file where this data
3682
- * should be written. If `typeof position !== 'number'`, the data will be written
3683
- * at the current position.
3684
- *
3685
- * The callback will be given three arguments: `err`, `bytesWritten`, and`buffers`. `bytesWritten` is how many bytes were written from `buffers`.
3686
- *
3687
- * If this method is `util.promisify()` ed, it returns a promise for an`Object` with `bytesWritten` and `buffers` properties.
3688
- *
3689
- * It is unsafe to use `fs.writev()` multiple times on the same file without
3690
- * waiting for the callback. For this scenario, use {@link createWriteStream}.
3691
- *
3692
- * On Linux, positional writes don't work when the file is opened in append mode.
3693
- * The kernel ignores the position argument and always appends the data to
3694
- * the end of the file.
3695
- * @since v12.9.0
3696
- */
3697
- export function writev(fd: number, buffers: ReadonlyArray<NodeJS.ArrayBufferView>, cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void): void;
3698
- export function writev(
3699
- fd: number,
3700
- buffers: ReadonlyArray<NodeJS.ArrayBufferView>,
3701
- position: number,
3702
- cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void
3703
- ): void;
3704
- export interface WriteVResult {
3705
- bytesWritten: number;
3706
- buffers: NodeJS.ArrayBufferView[];
3707
- }
3708
- export namespace writev {
3709
- function __promisify__(fd: number, buffers: ReadonlyArray<NodeJS.ArrayBufferView>, position?: number): Promise<WriteVResult>;
3710
- }
3711
- /**
3712
- * For detailed information, see the documentation of the asynchronous version of
3713
- * this API: {@link writev}.
3714
- * @since v12.9.0
3715
- * @return The number of bytes written.
3716
- */
3717
- export function writevSync(fd: number, buffers: ReadonlyArray<NodeJS.ArrayBufferView>, position?: number): number;
3718
- /**
3719
- * Read from a file specified by `fd` and write to an array of `ArrayBufferView`s
3720
- * using `readv()`.
3721
- *
3722
- * `position` is the offset from the beginning of the file from where data
3723
- * should be read. If `typeof position !== 'number'`, the data will be read
3724
- * from the current position.
3725
- *
3726
- * The callback will be given three arguments: `err`, `bytesRead`, and`buffers`. `bytesRead` is how many bytes were read from the file.
3727
- *
3728
- * If this method is invoked as its `util.promisify()` ed version, it returns
3729
- * a promise for an `Object` with `bytesRead` and `buffers` properties.
3730
- * @since v13.13.0, v12.17.0
3731
- */
3732
- export function readv(fd: number, buffers: ReadonlyArray<NodeJS.ArrayBufferView>, cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void): void;
3733
- export function readv(
3734
- fd: number,
3735
- buffers: ReadonlyArray<NodeJS.ArrayBufferView>,
3736
- position: number,
3737
- cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void
3738
- ): void;
3739
- export interface ReadVResult {
3740
- bytesRead: number;
3741
- buffers: NodeJS.ArrayBufferView[];
3742
- }
3743
- export namespace readv {
3744
- function __promisify__(fd: number, buffers: ReadonlyArray<NodeJS.ArrayBufferView>, position?: number): Promise<ReadVResult>;
3745
- }
3746
- /**
3747
- * For detailed information, see the documentation of the asynchronous version of
3748
- * this API: {@link readv}.
3749
- * @since v13.13.0, v12.17.0
3750
- * @return The number of bytes read.
3751
- */
3752
- export function readvSync(fd: number, buffers: ReadonlyArray<NodeJS.ArrayBufferView>, position?: number): number;
3753
- export interface OpenDirOptions {
3754
- encoding?: BufferEncoding | undefined;
3755
- /**
3756
- * Number of directory entries that are buffered
3757
- * internally when reading from the directory. Higher values lead to better
3758
- * performance but higher memory usage.
3759
- * @default 32
3760
- */
3761
- bufferSize?: number | undefined;
3762
- }
3763
- /**
3764
- * Synchronously open a directory. See [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html).
3765
- *
3766
- * Creates an `fs.Dir`, which contains all further functions for reading from
3767
- * and cleaning up the directory.
3768
- *
3769
- * The `encoding` option sets the encoding for the `path` while opening the
3770
- * directory and subsequent read operations.
3771
- * @since v12.12.0
3772
- */
3773
- export function opendirSync(path: PathLike, options?: OpenDirOptions): Dir;
3774
- /**
3775
- * Asynchronously open a directory. See the POSIX [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html) documentation for
3776
- * more details.
3777
- *
3778
- * Creates an `fs.Dir`, which contains all further functions for reading from
3779
- * and cleaning up the directory.
3780
- *
3781
- * The `encoding` option sets the encoding for the `path` while opening the
3782
- * directory and subsequent read operations.
3783
- * @since v12.12.0
3784
- */
3785
- export function opendir(path: PathLike, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void;
3786
- export function opendir(path: PathLike, options: OpenDirOptions, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void;
3787
- export namespace opendir {
3788
- function __promisify__(path: PathLike, options?: OpenDirOptions): Promise<Dir>;
3789
- }
3790
- export interface BigIntStats extends StatsBase<bigint> {
3791
- atimeNs: bigint;
3792
- mtimeNs: bigint;
3793
- ctimeNs: bigint;
3794
- birthtimeNs: bigint;
3795
- }
3796
- export interface BigIntOptions {
3797
- bigint: true;
3798
- }
3799
- export interface StatOptions {
3800
- bigint?: boolean | undefined;
3801
- }
3802
- export interface StatSyncOptions extends StatOptions {
3803
- throwIfNoEntry?: boolean | undefined;
3804
- }
3805
- export interface CopyOptions {
3806
- /**
3807
- * Dereference symlinks
3808
- * @default false
3809
- */
3810
- dereference?: boolean;
3811
- /**
3812
- * When `force` is `false`, and the destination
3813
- * exists, throw an error.
3814
- * @default false
3815
- */
3816
- errorOnExist?: boolean;
3817
- /**
3818
- * Function to filter copied files/directories. Return
3819
- * `true` to copy the item, `false` to ignore it.
3820
- */
3821
- filter?(source: string, destination: string): boolean;
3822
- /**
3823
- * Overwrite existing file or directory. _The copy
3824
- * operation will ignore errors if you set this to false and the destination
3825
- * exists. Use the `errorOnExist` option to change this behavior.
3826
- * @default true
3827
- */
3828
- force?: boolean;
3829
- /**
3830
- * When `true` timestamps from `src` will
3831
- * be preserved.
3832
- * @default false
3833
- */
3834
- preserveTimestamps?: boolean;
3835
- /**
3836
- * Copy directories recursively.
3837
- * @default false
3838
- */
3839
- recursive?: boolean;
3840
- }
3841
- /**
3842
- * Asynchronously copies the entire directory structure from `src` to `dest`,
3843
- * including subdirectories and files.
3844
- *
3845
- * When copying a directory to another directory, globs are not supported and
3846
- * behavior is similar to `cp dir1/ dir2/`.
3847
- * @since v16.7.0
3848
- * @experimental
3849
- * @param src source path to copy.
3850
- * @param dest destination path to copy to.
3851
- */
3852
- export function cp(source: string, destination: string, callback: (err: NodeJS.ErrnoException | null) => void): void;
3853
- export function cp(source: string, destination: string, opts: CopyOptions, callback: (err: NodeJS.ErrnoException | null) => void): void;
3854
- /**
3855
- * Synchronously copies the entire directory structure from `src` to `dest`,
3856
- * including subdirectories and files.
3857
- *
3858
- * When copying a directory to another directory, globs are not supported and
3859
- * behavior is similar to `cp dir1/ dir2/`.
3860
- * @since v16.7.0
3861
- * @experimental
3862
- * @param src source path to copy.
3863
- * @param dest destination path to copy to.
3864
- */
3865
- export function cpSync(source: string, destination: string, opts?: CopyOptions): void;
3866
- }
3867
- declare module 'node:fs' {
3868
- export * from 'fs';
3869
- }