Поправлен баг

This commit is contained in:
Book Pauk
2022-11-09 18:26:19 +07:00
parent 28963116c3
commit 2fa48cdde6

View File

@@ -336,7 +336,7 @@ class XmlParser extends NodeBase {
each(callback, self = false) {
if (self) {
for (const n of this.rawNodes) {
if (callback(new NodeObject(n)) === false);
if (callback(new NodeObject(n)) === false)
return this;
}
} else {