@microsoft/applicationinsights-dependencies-js 2.7.2-nightly.2111-06 → 2.7.2-nightly.2111-10

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "metadata": {
3
3
  "toolPackage": "@microsoft/api-extractor",
4
- "toolVersion": "7.18.17",
4
+ "toolVersion": "7.18.19",
5
5
  "schemaVersion": 1004,
6
6
  "oldestForwardsCompatibleVersion": 1001,
7
7
  "tsdocConfig": {
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Microsoft Application Insights XHR dependencies plugin, 2.7.2-nightly.2111-06
2
+ * Microsoft Application Insights XHR dependencies plugin, 2.7.2-nightly.2111-10
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 - Dependencies Plugin, 2.7.2-nightly.2111-06
2
+ * Application Insights JavaScript SDK - Dependencies Plugin, 2.7.2-nightly.2111-10
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
  (function (global, factory) {
@@ -1823,7 +1823,7 @@
1823
1823
  _this.data = dataSanitizeUrl(logger, commandName) || dependencyFields.data;
1824
1824
  _this.target = dataSanitizeString(logger, dependencyFields.target);
1825
1825
  if (correlationContext) {
1826
- _this.target = _this.target + " | " + correlationContext;
1826
+ _this.target = "".concat(_this.target, " | ").concat(correlationContext);
1827
1827
  }
1828
1828
  _this.name = dataSanitizeString(logger, dependencyFields.name);
1829
1829
  _this.properties = dataSanitizeProperties(logger, properties);
@@ -2108,7 +2108,7 @@
2108
2108
  };
2109
2109
  Traceparent.prototype.toString = function () {
2110
2110
  var self = this;
2111
- return self.version + "-" + self.traceId + "-" + self.spanId + "-" + self.traceFlag;
2111
+ return "".concat(self.version, "-").concat(self.traceId, "-").concat(self.spanId, "-").concat(self.traceFlag);
2112
2112
  };
2113
2113
  Traceparent.DEFAULT_TRACE_FLAG = "01";
2114
2114
  Traceparent.DEFAULT_VERSION = "00";
@@ -2779,10 +2779,10 @@
2779
2779
  try {
2780
2780
  if (!isNullOrUndefined(input)) {
2781
2781
  if (typeof (input) === "string") {
2782
- result += "(url: '" + input + "')";
2782
+ result += "(url: '".concat(input, "')");
2783
2783
  }
2784
2784
  else {
2785
- result += "(url: '" + input.url + "')";
2785
+ result += "(url: '".concat(input.url, "')");
2786
2786
  }
2787
2787
  }
2788
2788
  }