Skip to content

Commit

Permalink
Fix #203, nnext
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Dec 16, 2023
1 parent a16d829 commit 368cfc2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/squint/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1809,6 +1809,10 @@ export function next(x) {
}
}

export function nnext(x) {
return next(next(x));
}

export function compare(x, y) {
if (x === y) {
return 0;
Expand Down

0 comments on commit 368cfc2

Please sign in to comment.