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.
var Zone = require("can-zone");
var myZone = new Zone();
myZone.run(function(){
Zone.current === myZone;
});