Comparing version 0.14.3 to 0.14.4
@@ -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
1029847
29945