Skip to content

Commit

Permalink
Fixed identation
Browse files Browse the repository at this point in the history
  • Loading branch information
dfahlander committed May 26, 2024
1 parent 076dc15 commit c2d4d9d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/classes/collection/collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -504,11 +504,11 @@ export class Collection implements ICollection {
}
return this.clone().primaryKeys().then(keys => {
const criteria = isPlainKeyRange(ctx) &&
ctx.limit === Infinity &&
(typeof changes !== 'function' || changes === deleteCallback) && {
index: ctx.index,
range: ctx.range
};
ctx.limit === Infinity &&
(typeof changes !== 'function' || changes === deleteCallback) && {
index: ctx.index,
range: ctx.range
};

const nextChunk = (offset: number) => {
const count = Math.min(limit, keys.length - offset);
Expand Down

0 comments on commit c2d4d9d

Please sign in to comment.