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 1/3] 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 +}; From 8c55103dfd632b2fa386147654ab5dfdb3f40a7c Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Sun, 29 Aug 2021 07:35:45 +0000 Subject: [PATCH 2/3] Restyled by clang-format --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f3b8531..47bf36d 100644 --- a/index.js +++ b/index.js @@ -3,6 +3,6 @@ const isObj = require("is-obj"); module.exports = value => { - //Check whether or not the value is the process + // Check whether or not the value is the process return isObj(value) && value === process; }; From 3a5cbed3cda4660e74b528cf62844e3e8102cebf Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Sun, 29 Aug 2021 07:35:46 +0000 Subject: [PATCH 3/3] Restyled by prettier --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 47bf36d..5126176 100644 --- a/index.js +++ b/index.js @@ -2,7 +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; };