From bbad2dec9d0305cb1fb4ad3e57e5a30dc21a6b28 Mon Sep 17 00:00:00 2001 From: Pancake <71993095+Cinnamonsroll@users.noreply.github.com> Date: Sun, 29 Aug 2021 03:35:19 -0400 Subject: [PATCH] Check whether or not the value is the process --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 2c82e4c..f3b8531 100644 --- a/index.js +++ b/index.js @@ -3,5 +3,6 @@ const isObj = require("is-obj"); module.exports = value => { + //Check whether or not the value is the process return isObj(value) && value === process; -}; \ No newline at end of file +};