B
Size: a a a
OK
B
B
AI
B
OK
SP
OK
B
V
const context = await browser.newContext();
await context.grantPermissions(['geolocation']);
await context.setGeolocation({longitude: 12.492507, latitude: 41.889938});
const page = await context.newPage();
await page.goto(url)
S
.filter(path => path !== null && path !== undefined) вполне можно заменить на path != null или path != undefinedOK
.filter(path => path !== null && path !== undefined) вполне можно заменить на path != null или path != undefinedS
OK
OI
== интересно вы сможете найти такое сравнение в вашем проекте?S
S
S
B