@schukai/monster 3.50.0 → 3.51.0
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
package/source/dom/updater.mjs
CHANGED
@@ -18,7 +18,7 @@ import {
|
|
18
18
|
ATTRIBUTE_UPDATER_REMOVE,
|
19
19
|
ATTRIBUTE_UPDATER_REPLACE,
|
20
20
|
ATTRIBUTE_UPDATER_SELECT_THIS,
|
21
|
-
} from "
|
21
|
+
} from "./constants.mjs";
|
22
22
|
|
23
23
|
import { Base } from "../types/base.mjs";
|
24
24
|
import { isArray, isInstance, isIterable } from "../types/is.mjs";
|
@@ -59,10 +59,6 @@ class ProxyObserver extends Base {
|
|
59
59
|
}
|
60
60
|
|
61
61
|
/**
|
62
|
-
* Get the real object
|
63
|
-
*
|
64
|
-
* Changes to this object are not noticed by the observers, so you can make a large number of changes and inform the observers later.
|
65
|
-
*
|
66
62
|
* @returns {object}
|
67
63
|
*/
|
68
64
|
getSubject() {
|
@@ -86,8 +82,10 @@ class ProxyObserver extends Base {
|
|
86
82
|
}
|
87
83
|
|
88
84
|
/**
|
89
|
-
*
|
85
|
+
* Get the real object
|
90
86
|
*
|
87
|
+
* Changes to this object are not noticed by the observers, so you can make a large number of changes and inform the observers later.
|
88
|
+
*
|
91
89
|
* @returns {object}
|
92
90
|
*/
|
93
91
|
getRealSubject() {
|
package/source/types/version.mjs
CHANGED
package/test/cases/monster.mjs
CHANGED