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

@lit-labs/ssr

Package Overview
Dependencies
Maintainers
11
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lit-labs/ssr - npm Package Compare versions

Comparing version 3.1.4 to 3.1.5

5

lib/element-renderer.js

@@ -101,2 +101,4 @@ /// <reference lib="dom" />

setAttribute(name, value) {
// Browser turns all HTML attributes to lowercase.
name = name.toLowerCase();
if (this.element !== undefined) {

@@ -160,3 +162,4 @@ const old = this.element.getAttribute(name);

setAttribute(name, value) {
this._attributes[name] = value;
// Browser turns all HTML attributes to lowercase.
this._attributes[name.toLowerCase()] = value;
}

@@ -163,0 +166,0 @@ *renderAttributes() {

2

package.json
{
"name": "@lit-labs/ssr",
"type": "module",
"version": "3.1.4",
"version": "3.1.5",
"publishConfig": {

@@ -6,0 +6,0 @@ "access": "public"

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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