(str: string)
| 293 | export const MAX_SANITIZED_LENGTH = 200 |
| 294 | |
| 295 | function simpleHash(str: string): string { |
| 296 | return Math.abs(djb2Hash(str)).toString(36) |
| 297 | } |
| 298 | |
| 299 | /** |
| 300 | * Makes a string safe for use as a directory or file name. |
no test coverage detected