@microsoft/1ds-core-js 4.3.6-nightly3.2502-12 → 4.3.6-nightly3.2502-14
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/bundle/es5/{ms.core-4.3.6-nightly3.2502-12.gbl.js → ms.core-4.3.6-nightly3.2502-14.gbl.js} +10 -10
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-14.gbl.js.map +1 -0
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-14.gbl.min.js +7 -0
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-14.gbl.min.js.map +1 -0
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-14.integrity.json +46 -0
- package/bundle/es5/{ms.core-4.3.6-nightly3.2502-12.js → ms.core-4.3.6-nightly3.2502-14.js} +10 -10
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-14.js.map +1 -0
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-14.min.js +7 -0
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-14.min.js.map +1 -0
- package/bundle/es5/ms.core.gbl.js +9 -9
- package/bundle/es5/ms.core.gbl.js.map +1 -1
- package/bundle/es5/ms.core.gbl.min.js +2 -2
- package/bundle/es5/ms.core.gbl.min.js.map +1 -1
- package/bundle/es5/ms.core.integrity.json +17 -17
- package/bundle/es5/ms.core.js +9 -9
- package/bundle/es5/ms.core.js.map +1 -1
- package/bundle/es5/ms.core.min.js +2 -2
- package/bundle/es5/ms.core.min.js.map +1 -1
- package/dist/es5/ms.core.js +7 -7
- package/dist/es5/ms.core.js.map +1 -1
- package/dist/es5/ms.core.min.js +2 -2
- package/dist/es5/ms.core.min.js.map +1 -1
- package/dist-es5/AppInsightsCore.js +1 -1
- package/dist-es5/BaseCore.js +1 -1
- package/dist-es5/DataModels.js +1 -1
- package/dist-es5/Enums.js +1 -1
- package/dist-es5/Index.js +1 -1
- package/dist-es5/InternalConstants.js +1 -1
- package/dist-es5/Utils.js +2 -2
- package/dist-es5/Utils.js.map +1 -1
- package/dist-es5/ValueSanitizer.js +1 -1
- package/dist-es5/__DynamicConstants.js +1 -1
- package/package.json +2 -2
- package/types/1ds-core-js.d.ts +2 -2
- package/types/1ds-core-js.namespaced.d.ts +2 -2
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-12.gbl.js.map +0 -1
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-12.gbl.min.js +0 -7
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-12.gbl.min.js.map +0 -1
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-12.integrity.json +0 -46
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-12.js.map +0 -1
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-12.min.js +0 -7
- package/bundle/es5/ms.core-4.3.6-nightly3.2502-12.min.js.map +0 -1
package/dist/es5/ms.core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* 1DS JS SDK Core, 4.3.6-nightly3.2502-
|
|
2
|
+
* 1DS JS SDK Core, 4.3.6-nightly3.2502-14
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
* (Microsoft Internal Only)
|
|
5
5
|
*/
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
var ObjClass$1 = Object;
|
|
17
17
|
var ObjProto$1 = ObjClass$1[strShimPrototype];
|
|
18
18
|
|
|
19
|
-
/*! https://github.com/nevware21/ts-utils v0.11.
|
|
19
|
+
/*! https://github.com/nevware21/ts-utils v0.11.7 */
|
|
20
20
|
/*#__NO_SIDE_EFFECTS__*/
|
|
21
21
|
function _pureAssign(func1, func2) {
|
|
22
22
|
return func1 || func2;
|
|
@@ -205,8 +205,8 @@
|
|
|
205
205
|
function _createKeyValueMap(values, keyType, valueType, completeFn, writable) {
|
|
206
206
|
var theMap = {};
|
|
207
207
|
objForEachKey(values, function (key, value) {
|
|
208
|
-
_assignMapValue(theMap, key, keyType ? value : key
|
|
209
|
-
_assignMapValue(theMap, value, valueType ? value : key
|
|
208
|
+
_assignMapValue(theMap, key, keyType ? value : key);
|
|
209
|
+
_assignMapValue(theMap, value, valueType ? value : key);
|
|
210
210
|
});
|
|
211
211
|
return completeFn ? completeFn(theMap) : theMap;
|
|
212
212
|
}
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
objDefineProp(theMap, key, {
|
|
215
215
|
value: value,
|
|
216
216
|
enumerable: true,
|
|
217
|
-
writable:
|
|
217
|
+
writable: false
|
|
218
218
|
});
|
|
219
219
|
}
|
|
220
220
|
var asString = ( /* #__PURE__ */_pureAssign(StrCls));
|
|
@@ -2329,7 +2329,7 @@
|
|
|
2329
2329
|
return result;
|
|
2330
2330
|
}
|
|
2331
2331
|
|
|
2332
|
-
var version = '3.3.6-nightly3.2502-
|
|
2332
|
+
var version = '3.3.6-nightly3.2502-14';
|
|
2333
2333
|
var instanceName = "." + newId(6);
|
|
2334
2334
|
var _dataUid = 0;
|
|
2335
2335
|
function _canAcceptData(target) {
|
|
@@ -6447,7 +6447,7 @@
|
|
|
6447
6447
|
var _DYN_CAN_HANDLE = "canHandle";
|
|
6448
6448
|
|
|
6449
6449
|
var _a;
|
|
6450
|
-
var Version = '4.3.6-nightly3.2502-
|
|
6450
|
+
var Version = '4.3.6-nightly3.2502-14';
|
|
6451
6451
|
var FullVersionString = "1DS-Web-JS-" + Version;
|
|
6452
6452
|
var ObjHasOwnProperty = ObjProto$1.hasOwnProperty;
|
|
6453
6453
|
var strDisabledPropertyName = "Microsoft_ApplicationInsights_BypassAjaxInstrumentation";
|