From f20fd0c726bd1cd92c1b9a00e8f427337333b4bc Mon Sep 17 00:00:00 2001 From: JiaLiPassion Date: Mon, 24 Sep 2018 16:53:33 +0900 Subject: [PATCH] lint --- lib/zone.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/zone.ts b/lib/zone.ts index 4edfad99d..4ca3384f2 100644 --- a/lib/zone.ts +++ b/lib/zone.ts @@ -665,7 +665,9 @@ const Zone: ZoneType = (function(global: any) { } const detectAsyncFunction = async function() {}; - const AsyncFunction = (detectAsyncFunction.constructor as any).name === 'AsyncFunction' ? detectAsyncFunction.constructor : null; + const AsyncFunction = (detectAsyncFunction.constructor as any).name === 'AsyncFunction' ? + detectAsyncFunction.constructor : + null; class Zone implements AmbientZone { static __symbol__: (name: string) => string = __symbol__;