(link: Link, store: Store, color?: boolean)
| 96 | return `✖ ${buildProductString(link, store)} :: CAPTCHA`; |
| 97 | }, |
| 98 | cloudflare(link: Link, store: Store, color?: boolean): string { |
| 99 | if (color) { |
| 100 | return ( |
| 101 | '✖ ' + |
| 102 | buildProductString(link, store, true) + |
| 103 | ' :: ' + |
| 104 | chalk.yellow('CLOUDFLARE, WAITING') |
| 105 | ); |
| 106 | } |
| 107 | |
| 108 | return `✖ ${buildProductString(link, store)} :: CLOUDFLARE, WAITING`; |
| 109 | }, |
| 110 | inStock(link: Link, store: Store, color?: boolean, sms?: boolean): string { |
| 111 | const productString = `${buildProductString(link, store)} :: IN STOCK`; |
| 112 |
nothing calls this directly
no test coverage detected