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 != undefined
OK
.filter(path => path !== null && path !== undefined)
вполне можно заменить на path != null
или path != undefined
S
OK
OI
==
интересно вы сможете найти такое сравнение в вашем проекте?S
S
S
B