diff --git a/lib/.eslintrc.yaml b/lib/.eslintrc.yaml index 1c925a9511ef36..0592218e5705a7 100644 --- a/lib/.eslintrc.yaml +++ b/lib/.eslintrc.yaml @@ -13,6 +13,8 @@ rules: message: "Use `const { Array } = primordials;` instead of the global." - name: BigInt message: "Use `const { BigInt } = primordials;` instead of the global." + - name: BigInt64Array + message: "Use `const { BigInt64Array } = primordials;` instead of the global." - name: BigUint64Array message: "Use `const { BigUint64Array } = primordials;` instead of the global." - name: Boolean diff --git a/lib/internal/util/inspect.js b/lib/internal/util/inspect.js index f5e96f66aab448..410e6af6eecedb 100644 --- a/lib/internal/util/inspect.js +++ b/lib/internal/util/inspect.js @@ -3,6 +3,7 @@ const { Array, ArrayIsArray, + BigInt64Array, BigIntPrototypeValueOf, BigUint64Array, BooleanPrototypeValueOf,