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