blossom-js-server-side
Advanced tools
Comparing version 0.41.0 to 0.42.0
{ | ||
"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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8151
86