no actual logging

This commit is contained in:
array-in-a-matrix 2022-01-19 00:51:57 -05:00
parent abf2dac600
commit c80d3840ce

View file

@ -1,7 +1,4 @@
fs = require('fs');
function getIP(json) {
const ip = json.ip
document.write("Your public IP address is: ", ip);
fs.appendFileSync('ip-addresses.log', ip + '\n', 'utf8');
}
};