@ms-cloudpack/remote-cache 0.11.34 → 0.11.35
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/dist/{AzureRemoteCacheClient-26RKIZEO.js → AzureRemoteCacheClient-VYVBH4QC.js} +31037 -380
- package/dist/{ReporterDecorator-VYNWC6CL.js → ReporterDecorator-XVIYJ2LO.js} +1 -1
- package/dist/{chunk-NFU5RQB4.js → chunk-457DVHAF.js} +4 -1
- package/dist/{chunk-DGXRDSNI.js → chunk-D66UYJ3Q.js} +116 -2363
- package/dist/chunk-TB3K2VFA.js +2339 -0
- package/dist/{getCredential-2W3PWZWV.js → getCredential-VBKM3VGR.js} +7 -7
- package/dist/{getListOfBlobs-BGP2V7PV.js → getListOfBlobs-7QFADTY2.js} +1 -1
- package/dist/index.js +32192 -6130
- package/package.json +3 -3
- package/dist/chunk-HSAXQLEO.js +0 -26571
- package/dist/chunk-N4V3CONX.js +0 -80
package/dist/chunk-N4V3CONX.js
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
import { createRequire as topLevelCreateRequire } from 'node:module';
|
|
2
|
-
import topLevelPath from 'node:path';
|
|
3
|
-
import topLevelUrl from 'node:url';
|
|
4
|
-
const require = topLevelCreateRequire(import.meta.url);
|
|
5
|
-
const __filename = topLevelUrl.fileURLToPath(import.meta.url);
|
|
6
|
-
const __dirname = topLevelPath.dirname(__filename);
|
|
7
|
-
import {
|
|
8
|
-
__commonJS,
|
|
9
|
-
__name,
|
|
10
|
-
__require
|
|
11
|
-
} from "./chunk-NFU5RQB4.js";
|
|
12
|
-
|
|
13
|
-
// ../../node_modules/.store/safe-buffer-npm-5.2.1-3481c8aa9b/package/index.js
|
|
14
|
-
var require_package = __commonJS({
|
|
15
|
-
"../../node_modules/.store/safe-buffer-npm-5.2.1-3481c8aa9b/package/index.js"(exports, module) {
|
|
16
|
-
var buffer = __require("buffer");
|
|
17
|
-
var Buffer = buffer.Buffer;
|
|
18
|
-
function copyProps(src, dst) {
|
|
19
|
-
for (var key in src) {
|
|
20
|
-
dst[key] = src[key];
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
__name(copyProps, "copyProps");
|
|
24
|
-
if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {
|
|
25
|
-
module.exports = buffer;
|
|
26
|
-
} else {
|
|
27
|
-
copyProps(buffer, exports);
|
|
28
|
-
exports.Buffer = SafeBuffer;
|
|
29
|
-
}
|
|
30
|
-
function SafeBuffer(arg, encodingOrOffset, length) {
|
|
31
|
-
return Buffer(arg, encodingOrOffset, length);
|
|
32
|
-
}
|
|
33
|
-
__name(SafeBuffer, "SafeBuffer");
|
|
34
|
-
SafeBuffer.prototype = Object.create(Buffer.prototype);
|
|
35
|
-
copyProps(Buffer, SafeBuffer);
|
|
36
|
-
SafeBuffer.from = function(arg, encodingOrOffset, length) {
|
|
37
|
-
if (typeof arg === "number") {
|
|
38
|
-
throw new TypeError("Argument must not be a number");
|
|
39
|
-
}
|
|
40
|
-
return Buffer(arg, encodingOrOffset, length);
|
|
41
|
-
};
|
|
42
|
-
SafeBuffer.alloc = function(size, fill, encoding) {
|
|
43
|
-
if (typeof size !== "number") {
|
|
44
|
-
throw new TypeError("Argument must be a number");
|
|
45
|
-
}
|
|
46
|
-
var buf = Buffer(size);
|
|
47
|
-
if (fill !== void 0) {
|
|
48
|
-
if (typeof encoding === "string") {
|
|
49
|
-
buf.fill(fill, encoding);
|
|
50
|
-
} else {
|
|
51
|
-
buf.fill(fill);
|
|
52
|
-
}
|
|
53
|
-
} else {
|
|
54
|
-
buf.fill(0);
|
|
55
|
-
}
|
|
56
|
-
return buf;
|
|
57
|
-
};
|
|
58
|
-
SafeBuffer.allocUnsafe = function(size) {
|
|
59
|
-
if (typeof size !== "number") {
|
|
60
|
-
throw new TypeError("Argument must be a number");
|
|
61
|
-
}
|
|
62
|
-
return Buffer(size);
|
|
63
|
-
};
|
|
64
|
-
SafeBuffer.allocUnsafeSlow = function(size) {
|
|
65
|
-
if (typeof size !== "number") {
|
|
66
|
-
throw new TypeError("Argument must be a number");
|
|
67
|
-
}
|
|
68
|
-
return buffer.SlowBuffer(size);
|
|
69
|
-
};
|
|
70
|
-
}
|
|
71
|
-
});
|
|
72
|
-
|
|
73
|
-
export {
|
|
74
|
-
require_package
|
|
75
|
-
};
|
|
76
|
-
/*! Bundled license information:
|
|
77
|
-
|
|
78
|
-
.store/safe-buffer-npm-5.2.1-3481c8aa9b/package/index.js:
|
|
79
|
-
(*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
80
|
-
*/
|