UNPKG
playwright-single-file
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
SingleFile for Playwright
github.com/albinekb/playwright-singlefile
albinekb/playwright-singlefile
playwright-single-file
/
dist
/
lib
/
remover.js
7 lines
(6 loc)
•
233 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
removeScripts(content) {
return
content.replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>\s*/gi,
''
); }
export
function
removeEmptyLines(content) {
return
content.replace(/\n\s*\n\s*\n+/g,
'\n\n'
); }