nest-jsx-template-engine
Advanced tools
Comparing version 0.2.3 to 0.2.4
{ | ||
"name": "nest-jsx-template-engine", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"description": "JSX-based + typescript template engine for NestJS applications", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -9,3 +9,3 @@ function stringifyChildren(child: any): string { | ||
if (Array.isArray(child)) { | ||
stringifiedChild = child.join('\n') | ||
stringifiedChild = child.join('') | ||
} else if (child && typeof child.toString === 'function') { | ||
@@ -12,0 +12,0 @@ // there's a value that exposes a `toString` coercion method |
364592