Skip to content

Commit 6992189

Browse files
committed
remove arrow function
ES6 habbits hit hard :D
1 parent 06f7337 commit 6992189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ exports.inspectOpts = Object.keys(process.env).filter(function (key) {
5959
*/
6060

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

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

0 commit comments

Comments
 (0)