We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d929f2 commit 4e4882eCopy full SHA for 4e4882e
src/get-project-info.ts
@@ -19,7 +19,7 @@ export async function getProjectInfo(): Promise<ProjectInfo> {
19
{
20
name: 'library.description',
21
message: 'Description:',
22
- filter: (s) => s.replaceAll('\\', '\\\\').replaceAll('"', '\\"').replace('\n', '\\n'),
+ filter: (s: string) => s.replace(/\\/g, '\\\\').replace(/"/g, '\\"').replace(/\n/g, '\\n'),
23
},
24
25
name: 'library.keywords',
0 commit comments