Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit f20fd0c

Browse files
committed
lint
1 parent 72d5749 commit f20fd0c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/zone.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,9 @@ const Zone: ZoneType = (function(global: any) {
665665
}
666666

667667
const detectAsyncFunction = async function() {};
668-
const AsyncFunction = (detectAsyncFunction.constructor as any).name === 'AsyncFunction' ? detectAsyncFunction.constructor : null;
668+
const AsyncFunction = (detectAsyncFunction.constructor as any).name === 'AsyncFunction' ?
669+
detectAsyncFunction.constructor :
670+
null;
669671

670672
class Zone implements AmbientZone {
671673
static __symbol__: (name: string) => string = __symbol__;

0 commit comments

Comments
 (0)