(folder)
| 100 | } |
| 101 | |
| 102 | function escapeFolderSelectorValue(folder) { |
| 103 | const value = String(folder ?? ''); |
| 104 | if (window.CSS && typeof CSS.escape === 'function') { |
| 105 | return CSS.escape(value); |
| 106 | } |
| 107 | return value.replace(/([!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~])/g, '\\$1'); |
| 108 | } |
| 109 | |
| 110 | function enforceShareFolderRule(row) { |
| 111 | const manage = qs(row, 'input[data-cap="manage"]'); |
no outgoing calls
no test coverage detected