We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c58ec commit 5ca20e3Copy full SHA for 5ca20e3
1 file changed
lib/inspector.js
@@ -10,10 +10,10 @@ const modes = require('./modes.enum')
10
* given value, then compare the raw value of NODE_ENV is returned
11
*
12
* @example <caption>with NODE_ENV="dev"</caption>
13
- * inspector() // return "dev"
14
- * inspector("test") // return false;
15
- * inspector("development") // return true;
16
- * inspector("dev") // return true;
+ * inspector() // "dev"
+ * inspector("test") // false;
+ * inspector("development") // true;
+ * inspector("dev") // true;
17
18
* @param {string} [env] environment to be tested
19
* @return {boolean | string}
0 commit comments