(name: string)
| 5 | * @returns A sanitized filename safe for all platforms |
| 6 | */ |
| 7 | export function sanitizeFileName(name: string): string { |
| 8 | return name.replace(/[<>:"/\\|?*]/g, '_').replace(/\s+/g, '_') |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Deepnote block types that should be converted to code cells. |
no outgoing calls
no test coverage detected