Skip to content

Commit

Permalink
module: remove usage of require('util')
Browse files Browse the repository at this point in the history
Use `require('internal/util/debuglog').debuglog` instead of
`require('util').debuglog` in `lib/internal/modules/esm/module_map.js`.

Refs: nodejs#26546

PR-URL: nodejs#26805
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
  • Loading branch information
dnlup authored and targos committed Mar 27, 2019
1 parent 1d22251 commit 8cdb882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/modules/esm/module_map.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const ModuleJob = require('internal/modules/esm/module_job');
const {
SafeMap
} = primordials;
const debug = require('util').debuglog('esm');
const debug = require('internal/util/debuglog').debuglog('esm');
const { ERR_INVALID_ARG_TYPE } = require('internal/errors').codes;
const { validateString } = require('internal/validators');

Expand Down

0 comments on commit 8cdb882

Please sign in to comment.