Added checks util

This commit is contained in:
Simon Hofmann
2018-08-31 09:47:44 +02:00
parent 7f6d18e1b4
commit 0f1bdfd58d
+7
View File
@@ -0,0 +1,7 @@
'use strict'
module.exports = {
"isNumeric": function(param) {
return (typeof param === "number" && !isNaN(param));
}
};