summaryrefslogtreecommitdiff
path: root/node_modules/@electron/get/dist/cjs/downloader-resolver.js
blob: 52a51d3f4afc8749bfb4cb6fc996f0f4bcdc264c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
async function getDownloaderForSystem() {
    // TODO: Resolve the downloader or default to GotDownloader
    // Current thoughts are a dot-file traversal for something like
    // ".electron.downloader" which would be a text file with the name of the
    // npm module to import() and use as the downloader
    const { GotDownloader } = await Promise.resolve().then(() => require('./GotDownloader'));
    return new GotDownloader();
}
exports.getDownloaderForSystem = getDownloaderForSystem;
//# sourceMappingURL=downloader-resolver.js.map