diff options
Diffstat (limited to 'cli/js/internals.ts')
-rw-r--r-- | cli/js/internals.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/internals.ts b/cli/js/internals.ts index 6aae1be48..174e9a0d4 100644 --- a/cli/js/internals.ts +++ b/cli/js/internals.ts @@ -11,6 +11,6 @@ export const internalObject: { [key: string]: any } = {}; export function exposeForTest(name: string, value: any): void { Object.defineProperty(internalObject, name, { value, - enumerable: false + enumerable: false, }); } |