(notePath: string)
| 194 | } |
| 195 | |
| 196 | function codeBlockFoldStorageKey(notePath: string): string { |
| 197 | return `${CODE_BLOCK_FOLDS_STORAGE_PREFIX}:${encodeURIComponent(notePath)}` |
| 198 | } |
| 199 | |
| 200 | function writeClipboardText(text: string): boolean { |
| 201 | if (typeof window === 'undefined') return false |
no outgoing calls
no test coverage detected