(s)
| 661 | const FOLDER_NAME_RE = /^[\p{L}\p{M}\p{N} '’&().,_-]+$/u; |
| 662 | const MAX_FOLDER_NAME_LEN = 100; |
| 663 | const isValidFolderName = (s) => FOLDER_NAME_RE.test(s); |
| 664 | |
| 665 | function openFolderEditor(folderId) { |
| 666 | const folder = folders.find((f) => f.id === folderId); |