@@ -148,10 +148,10 @@ TypeScript after transform:
148148 styled.div \`https:\`;
149149 // removes multi-line comments
150150 // \`this is a test\`
151- styled.div \`this is atest \`;
151+ styled.div \`this is a test \`;
152152 // joins all lines of code
153153 // \`this is a test\`
154- styled.div \`this is atest \`;
154+ styled.div \`this is a test \`;
155155 // removes line comments filling an entire line
156156 // \`line one line two\`
157157 styled.div \`line oneline two\`;
@@ -160,17 +160,17 @@ TypeScript after transform:
160160 styled.div \`valid line without comments\`;
161161 // preserves multi-line comments starting with /*!
162162 // \`this is a /*! dont ignore me please */ test\`
163- styled.div \`this is atest \`;
163+ styled.div \`this is a test \`;
164164 // returns the indices of removed placeholders (expressions)
165165 // \`this is some input with \${placeholder1} and //\${placeholder2}\`
166166 styled.div \`this is some input with\${placeholder1} and//\${placeholder2}\`;
167167 // works with raw escape codes
168168 // \`this\\\\nis\\\\na \\\\ntest\`
169- styled.div \`this\\\\nis\\\\na\\\\ntest\`;
169+ styled.div \`this\\\\nis\\\\na \\\\ntest\`;
170170 // \`this\\nis\\na \\ntest\`
171- styled.div \`this is atest \`;
171+ styled.div \`this is a test \`;
172172 // \`this is a test\`
173- styled.div \`this is atest \`;
173+ styled.div \`this is a test \`;
174174 // removes spaces around symbols
175175 // \`;:{},;\`
176176 styled.div \`;:{},;\`;
0 commit comments