Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove arrow function
ES6 habbits hit hard :D
  • Loading branch information
TooTallNate committed Dec 28, 2016
commit 6992189126146c409c69c79e4e96089baa7238d7
2 changes: 1 addition & 1 deletion src/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ exports.inspectOpts = Object.keys(process.env).filter(function (key) {
*/

if ('DEBUG_FD' in process.env) {
util.deprecate(() => {}, '`DEBUG_FD` is deprecated. Override `debug.log` if you want to use a different log function (https://git.io/vMUyr)')()
util.deprecate(function(){}, '`DEBUG_FD` is deprecated. Override `debug.log` if you want to use a different log function (https://git.io/vMUyr)')()
}

var fd = parseInt(process.env.DEBUG_FD, 10) || 2;
Expand Down