remove debug code

pull/1/head
yutent 2023-03-06 16:01:04 +08:00
parent 5563b26b75
commit 9bda193879
1 changed files with 0 additions and 8 deletions

View File

@ -14,10 +14,6 @@ export function css(strs, ...args) {
while (tmp.length) { while (tmp.length) {
output += tmp.shift() + (args.shift() || '') output += tmp.shift() + (args.shift() || '')
} }
if (args.length) {
output += args.join(' ')
}
return output return output
} }
@ -41,10 +37,6 @@ export function html(strs, ...args) {
} }
output += tmp.shift() + (_ === void 0 ? '' : _) output += tmp.shift() + (_ === void 0 ? '' : _)
} }
if (args.length) {
output += args.join(' ')
}
return output return output
} }