From 8b98026a5a0cc71e0ee851328a20e88d73d96d8c Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Wed, 29 Jul 2020 14:03:52 -0700 Subject: [PATCH] Added support for numbers being used as children, they now get wrapped automatically in a html template. --- src/ignite-template.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ignite-template.js b/src/ignite-template.js index 58a1830..97d1b49 100644 --- a/src/ignite-template.js +++ b/src/ignite-template.js @@ -19,6 +19,8 @@ class IgniteTemplate { this.children.push(new html(items[i])); } else if (items[i] instanceof String || typeof items[i] === 'string') { this.children.push(new html(items[i])); + } else if (items[i] instanceof Number || typeof items[i] === 'number') { + this.children.push(new html(items[i])); } else if (items[i] instanceof IgniteTemplate || items[i].prototype instanceof IgniteTemplate) { this.children.push(items[i]); } else { @@ -89,6 +91,8 @@ class IgniteTemplate { this.children.push(new html(items[i])); } else if (items[i] instanceof String || typeof items[i] === 'string') { this.children.push(new html(items[i])); + } else if (items[i] instanceof Number || typeof items[i] === 'number') { + this.children.push(new html(items[i])); } else if (items[i] instanceof IgniteTemplate || items[i].prototype instanceof IgniteTemplate) { this.children.push(items[i]); } else {