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.3 to 0.14.4

3

cjs/shared/matches.js

@@ -19,3 +19,4 @@ 'use strict';

const getAttributeValue = (element, name) => element.getAttribute(name);
const getAttributeValue = (element, name) => name === 'class' ?
element.classList.value : element.getAttribute(name);

@@ -22,0 +23,0 @@ const getChildren = ({childNodes}) => childNodes;

@@ -18,3 +18,4 @@ import * as CSSselect from 'css-select';

const getAttributeValue = (element, name) => element.getAttribute(name);
const getAttributeValue = (element, name) => name === 'class' ?
element.classList.value : element.getAttribute(name);

@@ -21,0 +22,0 @@ const getChildren = ({childNodes}) => childNodes;

{
"name": "linkedom",
"version": "0.14.3",
"version": "0.14.4",
"description": "A triple-linked lists based DOM implementation",

@@ -34,3 +34,3 @@ "main": "./cjs/index.js",

"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",

@@ -40,5 +40,5 @@ "@rollup/plugin-node-resolve": "^13.1.3",

"c8": "^7.11.0",
"eslint": "^8.7.0",
"rollup": "^2.66.0",
"typescript": "^4.5.5"
"eslint": "^8.10.0",
"rollup": "^2.70.0",
"typescript": "4.5.5"
},

@@ -45,0 +45,0 @@ "module": "./esm/index.js",

@@ -9,5 +9,5 @@ export function isConnected({ ownerDocument, parentNode }: {

export function previousSibling({ [PREV]: prev }: {
"__@PREV@38346": any;
"__@PREV@38436": any;
}): any;
export function nextSibling(node: any): any;
import { PREV } from "./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