@t007/dialog 0.0.8 → 0.0.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.
- package/dist/index.global.js +1 -2
- package/dist/standalone.js +1 -2
- package/package.json +2 -2
package/dist/index.global.js
CHANGED
|
@@ -72,8 +72,7 @@
|
|
|
72
72
|
while (proto && proto !== Object.prototype) {
|
|
73
73
|
for (const method of Object.getOwnPropertyNames(proto)) {
|
|
74
74
|
if (method === "constructor") continue;
|
|
75
|
-
if (isFunc(Object.getOwnPropertyDescriptor(proto, method)?.value))
|
|
76
|
-
callback(method, owner);
|
|
75
|
+
if (isFunc(Object.getOwnPropertyDescriptor(proto, method)?.value)) callback(method, owner);
|
|
77
76
|
}
|
|
78
77
|
proto = Object.getPrototypeOf(proto);
|
|
79
78
|
}
|
package/dist/standalone.js
CHANGED
|
@@ -70,8 +70,7 @@ function onAllMethods(owner, callback) {
|
|
|
70
70
|
while (proto && proto !== Object.prototype) {
|
|
71
71
|
for (const method of Object.getOwnPropertyNames(proto)) {
|
|
72
72
|
if (method === "constructor") continue;
|
|
73
|
-
if (isFunc(Object.getOwnPropertyDescriptor(proto, method)?.value))
|
|
74
|
-
callback(method, owner);
|
|
73
|
+
if (isFunc(Object.getOwnPropertyDescriptor(proto, method)?.value)) callback(method, owner);
|
|
75
74
|
}
|
|
76
75
|
proto = Object.getPrototypeOf(proto);
|
|
77
76
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t007/dialog",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "A lightweight, pure JS dialog system.",
|
|
5
5
|
"author": "Oketade Oluwatobiloba <tobioketade007@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -57,6 +57,6 @@
|
|
|
57
57
|
"accessible"
|
|
58
58
|
],
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@t007/utils": "^0.0.
|
|
60
|
+
"@t007/utils": "^0.0.11"
|
|
61
61
|
}
|
|
62
62
|
}
|