@lzwme/fe-utils
    Preparing search index...

    Function download

    • 文件下载。支持大文件并发分段下载

      Parameters

      Returns Promise<DownloadResult>

       download({
      url: 'https://vscode.download.prss.microsoft.com/dbazure/download/stable/19e0f9e681ecb8e5c09d8784acaa601316ca4571/VSCodeUserSetup-x64-1.100.0.exe',
      onProgress(d) {
      NLogger.getLogger().logInline(`${d.size} ${d.downloaded} ${d.percent.toFixed(2)}% ${(d.speed / 1024 / 1024).toFixed(2)}MB/S`);
      },
      }).then(d => console.log(d));