Skip to content

Commit 13fb6a6

Browse files
committed
lint
1 parent bdf1d4d commit 13fb6a6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

browser/diffDOM.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/diffDOM/virtual/fromDOM.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import { DiffDOMOptionsPartial, elementNodeType, textNodeType } from "../types"
22

3-
export function nodeToObj(aNode: Element, options: DiffDOMOptionsPartial = {valueDiffing: true}) {
3+
export function nodeToObj(
4+
aNode: Element,
5+
options: DiffDOMOptionsPartial = { valueDiffing: true }
6+
) {
47
const objNode: elementNodeType | textNodeType = {
58
nodeName: aNode.nodeName,
69
}

0 commit comments

Comments
 (0)