(raw: string | undefined)
| 2985 | * like "RFC / Design Doc" cannot escape into a nonexistent subdirectory. |
| 2986 | */ |
| 2987 | export function sanitizeNoteTitle(raw: string | undefined): string { |
| 2988 | return ( |
| 2989 | (raw ?? '') |
| 2990 | .replace(/[\\/:\u0000-\u001f*?"<>|]/g, '-') |
| 2991 | .replace(/\s+/g, ' ') |
| 2992 | .trim() |
| 2993 | .slice(0, 200) || 'Untitled' |
| 2994 | ) |
| 2995 | } |
| 2996 | |
| 2997 | export async function createNote( |
| 2998 | root: string, |
no outgoing calls
no test coverage detected