(item: string)
| 547 | export const isBase64Encoded = (item: string): boolean => isBase64.test(item); |
| 548 | |
| 549 | export const convertIfBase64 = (item: string): string => |
| 550 | isBase64Encoded(item) ? Buffer.from(item, 'base64').toString() : item; |
| 551 | |
| 552 | export const availableBrowsers = Promise.all([ |
| 553 | exists(playwright.chromium.executablePath()), |
no test coverage detected