sanitizeShellString() optimized strict sanitation

This commit is contained in:
Sebastian Hildebrandt
2021-02-20 14:06:21 +01:00
parent 881dde4734
commit 3b20fd7830
8 changed files with 20 additions and 26 deletions
-22
View File
@@ -1,22 +0,0 @@
let si = require('./internet');
si.inetChecksite([]).then((a) => {
if (a.ok == false)
console.log("inetChecksite is fixed!")
else
console.log("inetChecksite is not fixed!")
});
si.inetLatency([]).then((a) => {
if (a == null)
console.log("inetLatency is fixed!")
else
console.log("inetLatency is not fixed!")
});
si = require('./processes');
si.services([]).then((a) => {
if (typeof a == typeof [])
console.log("services is fixed!")
else
console.log("services is not fixed!")
});