Removing uppercase arg
This commit is contained in:
parent
bc98429e1d
commit
1b8e9fd529
@ -50,7 +50,6 @@ class ROR13 extends Operation {
|
||||
|
||||
for (let i = 0; i < input.length; i++) {
|
||||
const chr = input[i] & 0xFF;
|
||||
|
||||
hash = this.ror(hash, 13);
|
||||
hash = (hash + chr) >>> 0;
|
||||
}
|
||||
|
||||
@ -16,7 +16,7 @@ TestRegister.addTests([
|
||||
recipeConfig: [
|
||||
{
|
||||
op: "ROR13",
|
||||
args: [false]
|
||||
args: []
|
||||
},
|
||||
],
|
||||
},
|
||||
@ -27,7 +27,7 @@ TestRegister.addTests([
|
||||
recipeConfig: [
|
||||
{
|
||||
op: "ROR13",
|
||||
args: [false]
|
||||
args: []
|
||||
},
|
||||
],
|
||||
},
|
||||
@ -38,7 +38,7 @@ TestRegister.addTests([
|
||||
recipeConfig: [
|
||||
{
|
||||
op: "ROR13",
|
||||
args: [false]
|
||||
args: []
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user