(fileJSON)
| 146 | } |
| 147 | |
| 148 | function getManifestJSONData(fileJSON) { |
| 149 | const indent = getIndent(fileJSON); |
| 150 | const settings = JSON.parse(fileJSON).browser_specific_settings ? 1 : undefined; |
| 151 | if (indent !== 2 || settings !== undefined) { |
| 152 | return { |
| 153 | settings, |
| 154 | indent: indent !== 2 ? indent : undefined, |
| 155 | }; |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | async function firefoxFetchAllMetadata(noCache = false) { |
| 160 | if (noCache) { |
no test coverage detected