Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

blossom-js-server-side

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blossom-js-server-side - npm Package Compare versions

Comparing version 0.41.0 to 0.42.0

2

package.json
{
"name": "blossom-js-server-side",
"version": "0.41.0",
"version": "0.42.0",
"description": "🌸 Blossom-js server side renderer (included in Blossom-js).",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -73,3 +73,7 @@ /* eslint-disable */

Array.from(element.attributes).map((attr) => {
newElement.setAttribute(attr.name, element.getAttribute(attr.name))
if (newElement.nativeSetAttribute) {
newElement.nativeSetAttribute(attr.name, element.getAttribute(attr.name))
} else {
newElement.setAttribute(attr.name, element.getAttribute(attr.name))
}
});

@@ -76,0 +80,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc