use of instead of in

This commit is contained in:
jane 2021-05-27 14:33:51 -04:00
parent f989bd7ca2
commit 65aee2f83c
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export function recv(callback, errorCallback) {
console.log('connection recieved: ' +
con.remoteAddress + ":" + con.remotePort);
let data = [];
for (let key in Object.keys(functions)) {
for (let key of Object.keys(functions)) {
data.push({ n: key, a: reqs[key] })
}
let functions_str = JSON.stringify(data);