all repos — h3 @ 9f6fbd23dac63c7b1c8bda4f5b84bf5de7f58f14

A tiny, extremely minimalist JavaScript microframework.

Minor changes.
h3rald h3rald@h3rald.com
Sat, 01 Aug 2020 15:51:40 +0200
commit

9f6fbd23dac63c7b1c8bda4f5b84bf5de7f58f14

parent

5f5bb641b3085bf966d833c2c17154f776758cd5

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M h3.jsh3.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;