@xviewer.js/core 1.0.0-alpha.12 → 1.0.0-alpha.13
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/main.js +2 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +2 -2
- package/dist/module.js.map +1 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -1186,10 +1186,10 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
1186
1186
|
|
|
1187
1187
|
class PropertyManager {
|
|
1188
1188
|
static _getProperties(target) {
|
|
1189
|
-
return
|
|
1189
|
+
return PropertyManager._propertiesMap.get(target.constructor);
|
|
1190
1190
|
}
|
|
1191
1191
|
static _hasProperties(target) {
|
|
1192
|
-
return
|
|
1192
|
+
return PropertyManager._propertiesMap.has(target.constructor);
|
|
1193
1193
|
}
|
|
1194
1194
|
static _getMergedProperties(target) {
|
|
1195
1195
|
let props = null;
|