mirror of
https://github.com/Mintplex-Labs/nut.js.git
synced 2026-07-21 01:15:22 -04:00
Added checks util
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
'use strict'
|
||||
|
||||
module.exports = {
|
||||
"isNumeric": function(param) {
|
||||
return (typeof param === "number" && !isNaN(param));
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user