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.21 to 0.14.22

3

cjs/interface/element.js

@@ -88,2 +88,5 @@ 'use strict';

get nextSibling() { return nextSibling(this); }
get namespaceURI() {
return 'http://www.w3.org/1999/xhtml';
}

@@ -90,0 +93,0 @@ get previousElementSibling() { return previousElementSibling(this); }

@@ -39,2 +39,6 @@ 'use strict';

get namespaceURI() {
return 'http://www.w3.org/2000/svg';
}
getAttribute(name) {

@@ -41,0 +45,0 @@ return name === 'class' ?

@@ -90,2 +90,5 @@ // https://dom.spec.whatwg.org/#interface-element

get nextSibling() { return nextSibling(this); }
get namespaceURI() {
return 'http://www.w3.org/1999/xhtml';
}

@@ -92,0 +95,0 @@ get previousElementSibling() { return previousElementSibling(this); }

@@ -38,2 +38,6 @@ import {Element} from '../interface/element.js';

get namespaceURI() {
return 'http://www.w3.org/2000/svg';
}
getAttribute(name) {

@@ -40,0 +44,0 @@ return name === 'class' ?

2

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

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

@@ -6,2 +6,3 @@ /**

constructor(ownerDocument: any, localName: any);
get namespaceURI(): string;
before(...nodes: any[]): void;

@@ -8,0 +9,0 @@ after(...nodes: any[]): void;

@@ -97,2 +97,3 @@ export function ImageClass(ownerDocument: any): {

readonly nextSibling: any;
readonly namespaceURI: string;
readonly previousElementSibling: any;

@@ -99,0 +100,0 @@ readonly nextElementSibling: any;

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