From 4cd04a9b6f2685ad9845cddc65775d5b34ced1e8 Mon Sep 17 00:00:00 2001 From: Daniel Hritzkiv Date: Thu, 17 Jun 2021 15:04:02 -0400 Subject: [PATCH] style: use double quotes --- src/util/OrmUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/OrmUtils.ts b/src/util/OrmUtils.ts index 843e8baf75..1c4b0fef75 100644 --- a/src/util/OrmUtils.ts +++ b/src/util/OrmUtils.ts @@ -7,7 +7,7 @@ import {ObjectLiteral} from "../common/ObjectLiteral"; * * Note: `globalThis` is being extended with a `URL` property as @types/node does not declare it (see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/34960) */ -const GlobalURL = (typeof globalThis !== "undefined" ? globalThis as (typeof globalThis & {URL?: (typeof import('url').URL)}) : {URL: undefined}).URL; +const GlobalURL = (typeof globalThis !== "undefined" ? globalThis as (typeof globalThis & {URL?: (typeof import("url").URL)}) : {URL: undefined}).URL; export class OrmUtils {