UNPKG
sweetpea
Version:
latest (1.1.2)
1.1.2
1.1.1
1.0.4
1.0.3
1.0.1
1.0.0
Signal and Web Component Enhanced Web Apps
github.com/catpea/sweetpea
catpea/sweetpea
sweetpea
/
src
/
plug-ins
/
masticator
/
index.js
10 lines
(9 loc)
•
293 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
default
async
function
main
(
...list
){
for
(
const
url
of
list) {
const
response =
await
fetch
(url);
const
str =
await
response.
text
();
const
css =
new
CSSStyleSheet
(); css.
replaceSync
(str);
document
.
adoptedStyleSheets
= [...
document
.
adoptedStyleSheets
, css]; } }