Initial commit
This commit is contained in:
6
utils/html.js
Normal file
6
utils/html.js
Normal file
@@ -0,0 +1,6 @@
|
||||
const html = (strings, ...values) =>
|
||||
strings
|
||||
.reduce((result, str, i) => result + str + (values[i] || ""), "")
|
||||
.trim();
|
||||
|
||||
export default html;
|
||||
Reference in New Issue
Block a user