@microsoft/applicationinsights-channel-js 2.7.4-nightly.2202-03 → 2.7.4-nightly.2202-05
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/browser/applicationinsights-channel-js.integrity.json +9 -9
- package/browser/applicationinsights-channel-js.js +8 -9
- package/browser/applicationinsights-channel-js.js.map +1 -1
- package/browser/applicationinsights-channel-js.min.js +2 -2
- package/browser/applicationinsights-channel-js.min.js.map +1 -1
- package/dist/applicationinsights-channel-js.d.ts +1 -1
- package/dist/applicationinsights-channel-js.js +8 -9
- package/dist/applicationinsights-channel-js.js.map +1 -1
- package/dist/applicationinsights-channel-js.min.js +2 -2
- package/dist/applicationinsights-channel-js.min.js.map +1 -1
- package/dist/applicationinsights-channel-js.rollup.d.ts +1 -1
- package/dist-esm/EnvelopeCreator.js +2 -2
- package/dist-esm/EnvelopeCreator.js.map +1 -1
- package/dist-esm/Interfaces.js +1 -1
- package/dist-esm/Offline.js +1 -1
- package/dist-esm/SendBuffer.js +1 -1
- package/dist-esm/Sender.js +1 -1
- package/dist-esm/Serializer.js +1 -1
- package/dist-esm/TelemetryProcessors/Sample.js +1 -1
- package/dist-esm/TelemetryProcessors/SamplingScoreGenerators/HashCodeScoreGenerator.js +1 -1
- package/dist-esm/TelemetryProcessors/SamplingScoreGenerators/SamplingScoreGenerator.js +1 -1
- package/dist-esm/applicationinsights-channel-js.js +1 -1
- package/package.json +3 -3
- package/src/EnvelopeCreator.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights JavaScript SDK Channel, 2.7.4-nightly.2202-
|
|
2
|
+
* Microsoft Application Insights JavaScript SDK Channel, 2.7.4-nightly.2202-05
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Application Insights JavaScript SDK - Channel, 2.7.4-nightly.2202-
|
|
2
|
+
* Application Insights JavaScript SDK - Channel, 2.7.4-nightly.2202-05
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
(function (global, factory) {
|
|
@@ -440,11 +440,9 @@
|
|
|
440
440
|
var DateProto = Date[strShimPrototype];
|
|
441
441
|
var _dataToISOString = DateProto[strToISOString];
|
|
442
442
|
var _isArray = Array.isArray;
|
|
443
|
+
var _objToString = ObjProto[strToString];
|
|
443
444
|
var _fnToString = ObjHasOwnProperty[strToString];
|
|
444
445
|
_fnToString.call(ObjClass);
|
|
445
|
-
function objToString(obj) {
|
|
446
|
-
return ObjProto[strToString].call(obj);
|
|
447
|
-
}
|
|
448
446
|
function isUndefined(value) {
|
|
449
447
|
return value === undefined || typeof value === strShimUndefined;
|
|
450
448
|
}
|
|
@@ -491,11 +489,12 @@
|
|
|
491
489
|
}
|
|
492
490
|
return false;
|
|
493
491
|
}
|
|
494
|
-
|
|
495
|
-
|
|
492
|
+
var isArray = _isArray || _isArrayPoly;
|
|
493
|
+
function _isArrayPoly(obj) {
|
|
494
|
+
return !!(obj && _objToString.call(obj) === "[object Array]");
|
|
496
495
|
}
|
|
497
496
|
function isError(obj) {
|
|
498
|
-
return !!(obj &&
|
|
497
|
+
return !!(obj && _objToString.call(obj) === "[object Error]");
|
|
499
498
|
}
|
|
500
499
|
function isString(value) {
|
|
501
500
|
return typeof value === "string";
|
|
@@ -603,7 +602,7 @@
|
|
|
603
602
|
throwTypeError("objKeys called on non-object");
|
|
604
603
|
}
|
|
605
604
|
if (!_objKeysHasDontEnumBug && obj[strKeys]) {
|
|
606
|
-
return obj[strKeys];
|
|
605
|
+
return obj[strKeys]();
|
|
607
606
|
}
|
|
608
607
|
var result = [];
|
|
609
608
|
for (var prop in obj) {
|
|
@@ -2862,7 +2861,7 @@
|
|
|
2862
2861
|
}
|
|
2863
2862
|
}
|
|
2864
2863
|
var EnvelopeCreator = {
|
|
2865
|
-
Version: "2.7.4-nightly.2202-
|
|
2864
|
+
Version: "2.7.4-nightly.2202-05"
|
|
2866
2865
|
};
|
|
2867
2866
|
function DependencyEnvelopeCreator(logger, telemetryItem, customUndefinedValue) {
|
|
2868
2867
|
EnvelopeCreatorInit(logger, telemetryItem);
|