Last active
July 27, 2019 16:29
-
-
Save arturovt/efdd9cb991b2d97c4ace63064f3523a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'zone.js'; | |
const myFirstZone = Zone.current.fork({ | |
name: 'моя первая зона' | |
}); | |
console.log(myFirstZone.name); // моя первая зона | |
console.log(myFirstZone.parent === Zone.current); // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment