profileur-cli 2.0.6 → 2.0.7
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/extractor_cli.js +2 -1
- package/package.json +1 -1
package/extractor_cli.js
CHANGED
|
@@ -365,8 +365,9 @@ function extractPasswords(profilePath, outputDir, key) {
|
|
|
365
365
|
* @param {Object} [options]
|
|
366
366
|
* @param {string} [options.outputDir] Base output directory (default: "extracted_data")
|
|
367
367
|
* @param {Object<string, { path: string, name: string }>} [options.browsers] Custom browsers map
|
|
368
|
+
* @returns {Promise<void>} resolves when all files are fully written
|
|
368
369
|
*/
|
|
369
|
-
function main(options = {}) {
|
|
370
|
+
async function main(options = {}) {
|
|
370
371
|
const outputBaseDir = options.outputDir || options.outputBaseDir || 'extracted_data';
|
|
371
372
|
let browsers = options.browsers || {};
|
|
372
373
|
|
package/package.json
CHANGED