Detect-It-Easy/autotools/dbcompiler/node_modules/async/apply.js
DosX 77276a4fe9 Add archiver and pack .die-db archives
Add archiver dependency to package.json and update package-lock. Require archiver in task.js and implement createDieDb(srcDir, archivePath) to produce zip-based .die-db archives of processed output directories. After cleaning and reporting, the script now creates a .die-db archive per input directory and logs success/failure with archive sizes.
2026-05-09 16:38:11 +03:00

11 lines
No EOL
217 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (fn, ...args) {
return (...callArgs) => fn(...args, ...callArgs);
};
module.exports = exports.default;