Skip to content

Commit

Permalink
update js files
Browse files Browse the repository at this point in the history
  • Loading branch information
vsvipul committed Feb 10, 2022
1 parent 1a2d984 commit 64d30fb
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 36 deletions.
38 changes: 20 additions & 18 deletions dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1473,17 +1473,7 @@ exports.parseURL = __webpack_require__(936).parseURL;


/***/ }),
/* 71 */
/***/ (function() {

"use strict";

if (typeof Symbol === undefined || !Symbol.asyncIterator) {
Symbol.asyncIterator = Symbol.for("Symbol.asyncIterator");
}
//# sourceMappingURL=index.js.map

/***/ }),
/* 71 */,
/* 72 */,
/* 73 */,
/* 74 */,
Expand Down Expand Up @@ -2743,7 +2733,19 @@ Object.defineProperty(exports, "__esModule", { value: true });

/***/ }),
/* 96 */,
/* 97 */,
/* 97 */
/***/ (function() {

"use strict";

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
if (typeof Symbol === undefined || !Symbol.asyncIterator) {
Symbol.asyncIterator = Symbol.for("Symbol.asyncIterator");
}
//# sourceMappingURL=index.js.map

/***/ }),
/* 98 */,
/* 99 */,
/* 100 */,
Expand Down Expand Up @@ -35986,9 +35988,9 @@ function extractTar(archivePath, compressionMethod) {
function getCompressionProgram() {
switch (compressionMethod) {
case constants_1.CompressionMethod.Zstd:
return ['--use-compress-program', 'zstd -d --long=30'];
return ['--use-compress-program', 'zstd -d --fast=1 --long=30'];
case constants_1.CompressionMethod.ZstdWithoutLong:
return ['--use-compress-program', 'zstd -d'];
return ['--use-compress-program', 'zstd -d --fast=1'];
default:
return ['-z'];
}
Expand Down Expand Up @@ -36050,9 +36052,9 @@ function listTar(archivePath, compressionMethod) {
function getCompressionProgram() {
switch (compressionMethod) {
case constants_1.CompressionMethod.Zstd:
return ['--use-compress-program', 'zstd -d --long=30'];
return ['--use-compress-program', 'zstd -d --fast=1 --long=30'];
case constants_1.CompressionMethod.ZstdWithoutLong:
return ['--use-compress-program', 'zstd -d'];
return ['--use-compress-program', 'zstd -d --fast=1'];
default:
return ['-z'];
}
Expand Down Expand Up @@ -39151,7 +39153,7 @@ function defer(fn)

Object.defineProperty(exports, '__esModule', { value: true });

__webpack_require__(71);
__webpack_require__(97);
var tslib = __webpack_require__(671);

// Copyright (c) Microsoft Corporation.
Expand Down Expand Up @@ -53428,7 +53430,7 @@ var FormData = __webpack_require__(790);
var node_fetch = __webpack_require__(454);
var coreTracing = __webpack_require__(263);
var url = __webpack_require__(835);
__webpack_require__(71);
__webpack_require__(97);

function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }

Expand Down
38 changes: 20 additions & 18 deletions dist/save/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1473,17 +1473,7 @@ exports.parseURL = __webpack_require__(936).parseURL;


/***/ }),
/* 71 */
/***/ (function() {

"use strict";

if (typeof Symbol === undefined || !Symbol.asyncIterator) {
Symbol.asyncIterator = Symbol.for("Symbol.asyncIterator");
}
//# sourceMappingURL=index.js.map

/***/ }),
/* 71 */,
/* 72 */,
/* 73 */,
/* 74 */,
Expand Down Expand Up @@ -2743,7 +2733,19 @@ Object.defineProperty(exports, "__esModule", { value: true });

/***/ }),
/* 96 */,
/* 97 */,
/* 97 */
/***/ (function() {

"use strict";

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
if (typeof Symbol === undefined || !Symbol.asyncIterator) {
Symbol.asyncIterator = Symbol.for("Symbol.asyncIterator");
}
//# sourceMappingURL=index.js.map

/***/ }),
/* 98 */,
/* 99 */,
/* 100 */,
Expand Down Expand Up @@ -35986,9 +35988,9 @@ function extractTar(archivePath, compressionMethod) {
function getCompressionProgram() {
switch (compressionMethod) {
case constants_1.CompressionMethod.Zstd:
return ['--use-compress-program', 'zstd -d --long=30'];
return ['--use-compress-program', 'zstd -d --fast=1 --long=30'];
case constants_1.CompressionMethod.ZstdWithoutLong:
return ['--use-compress-program', 'zstd -d'];
return ['--use-compress-program', 'zstd -d --fast=1'];
default:
return ['-z'];
}
Expand Down Expand Up @@ -36050,9 +36052,9 @@ function listTar(archivePath, compressionMethod) {
function getCompressionProgram() {
switch (compressionMethod) {
case constants_1.CompressionMethod.Zstd:
return ['--use-compress-program', 'zstd -d --long=30'];
return ['--use-compress-program', 'zstd -d --fast=1 --long=30'];
case constants_1.CompressionMethod.ZstdWithoutLong:
return ['--use-compress-program', 'zstd -d'];
return ['--use-compress-program', 'zstd -d --fast=1'];
default:
return ['-z'];
}
Expand Down Expand Up @@ -39151,7 +39153,7 @@ function defer(fn)

Object.defineProperty(exports, '__esModule', { value: true });

__webpack_require__(71);
__webpack_require__(97);
var tslib = __webpack_require__(671);

// Copyright (c) Microsoft Corporation.
Expand Down Expand Up @@ -53431,7 +53433,7 @@ var FormData = __webpack_require__(790);
var node_fetch = __webpack_require__(454);
var coreTracing = __webpack_require__(263);
var url = __webpack_require__(835);
__webpack_require__(71);
__webpack_require__(97);

function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }

Expand Down

0 comments on commit 64d30fb

Please sign in to comment.