Skip to content
Closed
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
Next Next commit
lib: reformat require for internal/errors
Co-authored-by: James M Snell <jasnell@gmail.com>
  • Loading branch information
MattiasBuelens and jasnell committed Mar 15, 2021
commit 1de2c665f1a1eaa2b85bac11cbf6072a1a8a3edc
6 changes: 4 additions & 2 deletions lib/internal/abort_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ const {
} = require('internal/util');
const { inspect } = require('internal/util/inspect');
const {
ERR_INVALID_THIS
} = require('internal/errors').codes;
codes: {
ERR_INVALID_THIS,
}
} = require('internal/errors');

const kAborted = Symbol('kAborted');

Expand Down