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
Next Next commit
fixup! alphabetize primordials
  • Loading branch information
erights committed Aug 12, 2025
commit be7fd9ede6498d06d238ac9d10f185b681958fab
30 changes: 14 additions & 16 deletions lib/internal/util/inspect.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
'use strict';

const {
AggregateError,
AggregateErrorPrototype,
Array,
ArrayBuffer,
ArrayBufferPrototype,
Expand Down Expand Up @@ -30,27 +32,11 @@
DatePrototypeGetTime,
DatePrototypeToISOString,
DatePrototypeToString,

Error,
ErrorPrototype,
ErrorPrototypeToString,
AggregateError,
AggregateErrorPrototype,
EvalError,
EvalErrorPrototype,
RangeError,
RangeErrorPrototype,
ReferenceError,
ReferenceErrorPrototype,
// SuppressedError,
// SuppressedErrorPrototype,
SyntaxError,
SyntaxErrorPrototype,
TypeError,
TypeErrorPrototype,
URIError,
URIErrorPrototype,

Function,
FunctionPrototype,
FunctionPrototypeBind,
Expand Down Expand Up @@ -92,6 +78,10 @@
ObjectSetPrototypeOf,
Promise,
PromisePrototype,
RangeError,
RangeErrorPrototype,
ReferenceError,
ReferenceErrorPrototype,
ReflectApply,
ReflectOwnKeys,
RegExp,
Expand Down Expand Up @@ -127,16 +117,24 @@
StringPrototypeToLowerCase,
StringPrototypeTrim,
StringPrototypeValueOf,
// SuppressedError,
// SuppressedErrorPrototype,
SymbolIterator,
SymbolPrototypeToString,
SymbolPrototypeValueOf,
SymbolToPrimitive,
SymbolToStringTag,
SyntaxError,
SyntaxErrorPrototype,
TypedArray,
TypedArrayPrototype,
TypedArrayPrototypeGetLength,
TypedArrayPrototypeGetSymbolToStringTag,
TypeError,

Check failure on line 133 in lib/internal/util/inspect.js

View workflow job for this annotation

GitHub Actions / lint-js-and-md

Out of ASCIIbetical order - TypedArrayPrototypeGetSymbolToStringTag >= TypeError
TypeErrorPrototype,
Uint8Array,
URIError,

Check failure on line 136 in lib/internal/util/inspect.js

View workflow job for this annotation

GitHub Actions / lint-js-and-md

Out of ASCIIbetical order - Uint8Array >= URIError
URIErrorPrototype,
WeakMap,
WeakMapPrototype,
WeakSet,
Expand Down
Loading