Skip to content

Commit 8b08576

Browse files
committed
Updated undefined variable in method.
1 parent 4b63f97 commit 8b08576

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nosql.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ DatabaseBuilder.prototype.limit = function(count) {
917917
};
918918

919919
DatabaseBuilder.prototype.page = function(page, limit) {
920-
this.skip(value * limit)
920+
this.skip(page * limit)
921921
return this.take(limit);
922922
};
923923

0 commit comments

Comments
 (0)