mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
use .fill to initialise Arrays
This commit is contained in:
parent
d41d56e670
commit
5b03a84be8
3 changed files with 3 additions and 14 deletions
|
@ -713,13 +713,9 @@ const IP = {
|
|||
ip2 = IP._strToIpv6(range[14]);
|
||||
|
||||
let t = "",
|
||||
total = new Array(128),
|
||||
total = new Array(128).fill(),
|
||||
i;
|
||||
|
||||
// Initialise total array to "0"
|
||||
for (i = 0; i < 128; i++)
|
||||
total[i] = "0";
|
||||
|
||||
for (i = 0; i < 8; i++) {
|
||||
t = (ip2[i] - ip1[i]).toString(2);
|
||||
if (t !== "0") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue