We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e74c9 commit 803f802Copy full SHA for 803f802
1 file changed
packages/designto-token/utils/string/escape-string.ts
@@ -11,8 +11,6 @@ export function escapeString(text: string, lang: "dart" | "js") {
11
}
12
13
function escapeDartString(text: string): string {
14
- console.log(text, text.replace("\n", "\\n"));
15
-
16
// \ -> \\
17
text = text.split("\\").join("\\\\");
18
0 commit comments