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

Commit cf46fd6

Browse files
committed
using let instead of var
1 parent 347ebc9 commit cf46fd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/zone.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -953,7 +953,7 @@ const Zone: ZoneType = (function(global: any) {
953953
const symbolThen = __symbol__('then');
954954

955955
const symbolRootZoneSpec = '__rootZoneSpec__'
956-
var rootZone: Zone = new Zone(null, null);
956+
let rootZone: Zone = new Zone(null, null);
957957
if (global[symbolRootZoneSpec]) {
958958
rootZone = <Zone>rootZone.fork(global[symbolRootZoneSpec]);
959959
delete global[symbolRootZoneSpec];

0 commit comments

Comments
 (0)