(args, delimiter)
| 110 | } |
| 111 | |
| 112 | export function partitionArguments(args, delimiter) { |
| 113 | const index = args.indexOf(delimiter); |
| 114 | return index >= 0 |
| 115 | ? [args.slice(0, index), args.slice(index + 1)] |
| 116 | : [args, []]; |
| 117 | } |
| 118 | |
| 119 | export async function getInstalledSolanaVersion() { |
| 120 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…