Skip to content
This repository was archived by the owner on Oct 19, 2022. It is now read-only.

Commit c3b9d99

Browse files
committed
fix ReferenceError
1 parent 1c62227 commit c3b9d99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const request = require('request');
2222

2323
while (true) {
2424
var node_arr = null;
25-
if (fs.existsSync(node_list_file)) {
25+
if (existsSync(node_list_file)) {
2626
var node_arr = readFileSync(node_list_file, function(err, data) {
2727
if (err) throw err;
2828
}).toString().split('\n');

0 commit comments

Comments
 (0)