MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 11 lines 263 B view raw
1export function html(strings, ...values) { 2 let result = ''; 3 for (let i = 0; i < strings.length; i++) { 4 result = result + strings[i]; 5 if (i < values.length) { 6 let escaped = values[i]; 7 result = result + escaped; 8 } 9 } 10 return result; 11}