diff --git a/index.js b/index.js index 2c82e4c..5126176 100644 --- a/index.js +++ b/index.js @@ -2,6 +2,7 @@ const isObj = require("is-obj"); -module.exports = value => { +module.exports = (value) => { + // Check whether or not the value is the process return isObj(value) && value === process; -}; \ No newline at end of file +};