(
contentViewData: ContentViewData | undefined,
)
| 198 | } |
| 199 | |
| 200 | export async function copyViewContentDataToClipboard( |
| 201 | contentViewData: ContentViewData | undefined, |
| 202 | ) { |
| 203 | await copyToClipboard(Promise.resolve(contentViewData?.text || "")); |
| 204 | } |
| 205 | |
| 206 | export function rpartition(str: string, sep: string): [string, string] { |
| 207 | const lastIndex = str.lastIndexOf(sep); |
no test coverage detected
searching dependent graphs…