(event: KeyboardEvent | React.KeyboardEvent<unknown>)
| 20 | export const markdownImage = (altText: string, url: string) => `!${markdownLink(altText, url)}` |
| 21 | |
| 22 | export const isModifierKey = (event: KeyboardEvent | React.KeyboardEvent<unknown>) => |
| 23 | isMacOS() ? event.metaKey : event.ctrlKey |
no outgoing calls
no test coverage detected