current
Zone.current
Represents the currently running zone. If the code using Zone.current is not running within a zone the value will be undefined.
import Zone from "can-zone";
const myZone = new Zone();
myZone.run( function() {
Zone.current === myZone;
} );