@progress/kendo-spreadsheet-common 1.1.2-develop.3 → 1.1.2
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/index-esm.js +4 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
package/dist/index-esm.js
CHANGED
|
@@ -1250,6 +1250,10 @@ function deepExtendOne(destination, source) {
|
|
|
1250
1250
|
destProp;
|
|
1251
1251
|
|
|
1252
1252
|
for (property in source) {
|
|
1253
|
+
if (property === '__proto__' || property === 'constructor') {
|
|
1254
|
+
continue;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1253
1257
|
propValue = source[property];
|
|
1254
1258
|
propType = typeof propValue;
|
|
1255
1259
|
|
package/dist/index.js
CHANGED