Skip to content

Commit 002591d

Browse files
committed
unused
1 parent 5236717 commit 002591d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/svelte/src/internal/client/dom/blocks/each.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export function each(node, flags, get_collection, get_key, render_fn, fallback_f
129129
var anchor = node;
130130

131131
/** @type {EachState} */
132-
var state = { flags, items: new Map(), first: null, last: null };
132+
var state = { flags, items: new Map(), first: null };
133133

134134
var is_controlled = (flags & EACH_IS_CONTROLLED) !== 0;
135135

packages/svelte/src/internal/client/types.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ export type EachState = {
6767
flags: number;
6868
items: Map<any, EachItem>;
6969
first: EachItem | null;
70-
last: EachItem | null;
7170
};
7271

7372
export type EachItem = {

0 commit comments

Comments
 (0)