Skip to content

Commit

Permalink
chore: bump dist/index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
outloudvi committed Jan 26, 2024
1 parent 55a9ac4 commit f885d57
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2759,6 +2759,30 @@ module.exports = require("net");

/***/ }),

/***/ 254:
/***/ ((module) => {

"use strict";
module.exports = require("node:buffer");

/***/ }),

/***/ 561:
/***/ ((module) => {

"use strict";
module.exports = require("node:fs");

/***/ }),

/***/ 411:
/***/ ((module) => {

"use strict";
module.exports = require("node:path");

/***/ }),

/***/ 37:
/***/ ((module) => {

Expand Down Expand Up @@ -2833,8 +2857,9 @@ var __webpack_exports__ = {};
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
(() => {
const core = __nccwpck_require__(954);
const fs = __nccwpck_require__(147);
const path = __nccwpck_require__(17);
const fs = __nccwpck_require__(561);
const path = __nccwpck_require__(411);
const { Buffer } = __nccwpck_require__(254);

function getFilenameFromUrl(url) {
const u = new URL(url);
Expand All @@ -2851,6 +2876,7 @@ async function tryFetch(url, retryTimes) {
for (let i = 0; i <= retryTimes; i++) {
result = await fetch(url)
.then((x) => x.arrayBuffer())
.then((x) => Buffer.from(x))
.catch((err) => {
console.error(
`${
Expand Down

0 comments on commit f885d57

Please sign in to comment.