Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua McDonald <[email protected]>
  • Loading branch information
sentryjs committed Jun 8, 2023
1 parent 4ea5d68 commit 019daf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const EventEmitter = require('events');
const splitStream = require('./split-stream');

const PEER_LIST_FILE = process.cwd() + '/Data/peerlist.json';
const peerList = [];
var peerList = [];

const random4digithex = () => Math.random().toString(16).split('.')[1].substr(0, 4);
const randomuuid = () => new Array(8).fill(0).map(() => random4digithex()).join('-');
Expand Down

0 comments on commit 019daf8

Please sign in to comment.