Skip to content

Commit 823ec40

Browse files
committed
lint
1 parent ad34865 commit 823ec40

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

test/basic.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ t.test('basic operation', t => {
3939
message: 'perf option must have a now() method if specified',
4040
})
4141

42-
const c = new LRU<number | string | boolean, number | string>({ max: 10, perf: Date })
42+
const c = new LRU<number | string | boolean, number | string>({
43+
max: 10,
44+
perf: Date,
45+
})
4346
t.equal(c.perf, Date)
4447
for (let i = 0; i < 5; i++) {
4548
t.equal(c.set(i, i, { status: s() }), c)

0 commit comments

Comments
 (0)