Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zyrouge committed Jun 14, 2023
1 parent b79b3cb commit 0943ec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/shared/utils/hexify.baize
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ hexMap := '0123456789ABCDEF'.split('');

encode := -> input {
output := [];
input.toCodeUnits().forEach(-> x : {
input.toCodeUnits().forEach(-> x {
output.push(String.from((x / 16).truncate()));
output.push(hexMap[x % 16]);
});
Expand Down

0 comments on commit 0943ec1

Please sign in to comment.