(value: any)
| 307 | function parseArgs(text: string): QuoteArgs { |
| 308 | const args = text.trim().split(/\s+/).filter(Boolean); |
| 309 | const out: QuoteArgs = { |
| 310 | count: 1, |
| 311 | reply: false, |
| 312 | png: false, |
| 313 | img: false, |
| 314 | rate: false, |
| 315 | hidden: false, |
| 316 | media: false, |
| 317 | crop: false, |
| 318 | stories: false, |
no outgoing calls
no test coverage detected