From 3ac0389ec33e6df7ef5c097ea30ed01ae2c782a7 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Thu, 14 Jul 2022 08:34:36 -0400 Subject: inspect options: add missing numericSeparator option --- src/lib/common/typings/BushInspectOptions.ts | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/lib/common/typings') diff --git a/src/lib/common/typings/BushInspectOptions.ts b/src/lib/common/typings/BushInspectOptions.ts index 608000c..b8a16e1 100644 --- a/src/lib/common/typings/BushInspectOptions.ts +++ b/src/lib/common/typings/BushInspectOptions.ts @@ -107,6 +107,13 @@ export interface BushInspectOptions extends InspectOptions { */ getters?: 'get' | 'set' | boolean | undefined; + /** + * If set to `true`, an underscore is used to separate every three digits in all bigints and numbers. + * + * @default false + */ + numericSeparator: boolean; + /** * Whether or not to inspect strings. * -- cgit