New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

linkedom

Package Overview
Dependencies
Maintainers
1
Versions
214
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

linkedom - npm Package Compare versions

Comparing version 0.14.0 to 0.14.1

17

cjs/interface/css-style-declaration.js

@@ -85,2 +85,17 @@ 'use strict';

getPropertyValue(name) {
const self = this[PRIVATE];
return handler.get(self, name);
}
setProperty(name, value) {
const self = this[PRIVATE];
handler.set(self, name, value);
}
removeProperty(name) {
const self = this[PRIVATE];
handler.set(self, name, null);
}
[Symbol.iterator]() {

@@ -115,2 +130,2 @@ const keys = getKeys(this[PRIVATE]);

this.push(`${key}:${value}`);
}
}

@@ -84,2 +84,17 @@ import uhyphen from 'uhyphen';

getPropertyValue(name) {
const self = this[PRIVATE];
return handler.get(self, name);
}
setProperty(name, value) {
const self = this[PRIVATE];
handler.set(self, name, value);
}
removeProperty(name) {
const self = this[PRIVATE];
handler.set(self, name, null);
}
[Symbol.iterator]() {

@@ -113,2 +128,2 @@ const keys = getKeys(this[PRIVATE]);

this.push(`${key}:${value}`);
}
}

2

package.json
{
"name": "linkedom",
"version": "0.14.0",
"version": "0.14.1",
"description": "A triple-linked lists based DOM implementation",

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

@@ -8,4 +8,7 @@ /**

get cssText(): string;
getPropertyValue(name: any): any;
setProperty(name: any, value: any): void;
removeProperty(name: any): void;
get [PRIVATE](): CSSStyleDeclaration;
}
import { PRIVATE } from "../shared/symbols.js";

Sorry, the diff of this file is too big to display

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