From 9bda193879f04dd4111fb8cfb84d211ecf451ec9 Mon Sep 17 00:00:00 2001 From: yutent Date: Mon, 6 Mar 2023 16:01:04 +0800 Subject: [PATCH] remove debug code --- src/index.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/index.js b/src/index.js index 129ce7a..a77026b 100644 --- a/src/index.js +++ b/src/index.js @@ -14,10 +14,6 @@ export function css(strs, ...args) { while (tmp.length) { output += tmp.shift() + (args.shift() || '') } - - if (args.length) { - output += args.join(' ') - } return output } @@ -41,10 +37,6 @@ export function html(strs, ...args) { } output += tmp.shift() + (_ === void 0 ? '' : _) } - - if (args.length) { - output += args.join(' ') - } return output }