single-file-core 1.2.31 → 1.2.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "single-file-core",
3
- "version": "1.2.31",
3
+ "version": "1.2.32",
4
4
  "description": "SingleFile Core",
5
5
  "author": "Gildas Lormeau",
6
6
  "license": "AGPL-3.0-or-later",
@@ -84,6 +84,12 @@ async function extract(content, { password, prompt = () => { }, shadowRootScript
84
84
  await Promise.all(entries.map(async entry => {
85
85
  const { filename } = entry;
86
86
  let dataWriter, content, textContent, mimeType;
87
+ const resourceInfo = {};
88
+ if (filename.match(REGEXP_MATCH_INDEX)) {
89
+ indexPages.push(resourceInfo);
90
+ } else {
91
+ resources.push(resourceInfo);
92
+ }
87
93
  if (!options.password && entry.encrypted) {
88
94
  options.password = prompt("Please enter the password to view the page");
89
95
  }
@@ -119,12 +125,15 @@ async function extract(content, { password, prompt = () => { }, shadowRootScript
119
125
  }
120
126
  }
121
127
  const name = entry.filename.match(/^([0-9_]+\/)?(.*)$/)[2];
122
- const resourceInfo = { filename: entry.filename, name, url: entry.comment, content, mimeType, textContent, parentResources: [] };
123
- if (filename.match(REGEXP_MATCH_INDEX)) {
124
- indexPages.push(resourceInfo);
125
- } else {
126
- resources.push(resourceInfo);
127
- }
128
+ Object.assign(resourceInfo, {
129
+ filename: entry.filename,
130
+ name,
131
+ url: entry.comment,
132
+ content,
133
+ mimeType,
134
+ textContent,
135
+ parentResources: []
136
+ });
128
137
  }));
129
138
  await zipReader.close();
130
139
  indexPages.sort(sortByFilenameLength);