mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-08-31 08:13:11 +03:00
4 lines
133 B
TypeScript
4 lines
133 B
TypeScript
export function optionArrowUp(platform: string = process.platform): string {
|
|
return platform === "darwin" ? "⌥↑" : "alt+↑"
|
|
}
|