Comment créer un javascript blob
new Blob([`${/*this part declares the value*/'<h1>Hello</h1><style>h1:after{content:"world!"}</style>'}`], {
type: 'text/html'
})
Mais Inc