j-templates 7.0.100 → 7.0.101

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.
@@ -166,7 +166,7 @@ exports.DOMNodeConfig = {
166
166
  break;
167
167
  case 1:
168
168
  lastChild = getHTMLNode(children[0], target.firstChild);
169
- if (target.firstChild !== lastChild)
169
+ if (lastChild !== null && target.firstChild !== lastChild)
170
170
  target.insertBefore(lastChild, target.firstChild);
171
171
  break;
172
172
  default: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "j-templates",
3
- "version": "7.0.100",
3
+ "version": "7.0.101",
4
4
  "description": "j-templates",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/TypesInCode/jTemplates",