mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
async function removeTimes(page) {
|
|
await page.waitForSelector("time");
|
|
await page.evaluate(() => {
|
|
(document.querySelectorAll("time") || []).forEach((el) => el.remove());
|
|
});
|
|
}
|
|
|
|
module.exports = { removeTimes };
|