Skip to content

Instantly share code, notes, and snippets.

@arturovt
Last active July 27, 2019 16:29
Show Gist options
  • Save arturovt/efdd9cb991b2d97c4ace63064f3523a9 to your computer and use it in GitHub Desktop.
Save arturovt/efdd9cb991b2d97c4ace63064f3523a9 to your computer and use it in GitHub Desktop.
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