Skip to content

Commit

Permalink
style: use double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhritzkiv committed Jun 17, 2021
1 parent b7d59e3 commit 4cd04a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/OrmUtils.ts
Expand Up @@ -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 {

Expand Down

0 comments on commit 4cd04a9

Please sign in to comment.