(value: string)
| 332 | ): Record<string, unknown> => schemaExample(requestedSchema ?? {}) as Record<string, unknown>; |
| 333 | |
| 334 | export const shellQuoteArg = (value: string): string => { |
| 335 | if (/^[A-Za-z0-9_/:=@%+.,-]+$/.test(value)) return value; |
| 336 | return `'${value.replaceAll("'", "'\"'\"'")}'`; |
| 337 | }; |
| 338 | |
| 339 | const tokenizeSegment = (input: string): ReadonlyArray<string> => |
| 340 | input |
no outgoing calls
no test coverage detected