Minor changes.
h3rald h3rald@h3rald.com
Sat, 01 Aug 2020 15:51:40 +0200
1 files changed,
2 insertions(+),
2 deletions(-)
jump to
M
h3.js
→
h3.js
@@ -54,14 +54,14 @@ }
} return true; } - return checkProperties(obj1, obj2); // && checkProperties(obj2, obj1); + return checkProperties(obj1, obj2); }; const selectorRegex = /^([a-z][a-z0-9:_=-]*)?(#[a-z0-9:_=-]+)?(\.[^ ]+)*$/i; const [PATCH, INSERT, DELETE] = [-1, -2, -3]; let $onrenderCallbacks = []; -// Virtual Node Implementation with HyperScript-like syntax +// Virtual DOM implementation with HyperScript syntax class VNode { constructor(...args) { this.type = undefined;