getCurrentMode static method
Implementation
static SandboxMode getCurrentMode() {
if (!_enabled) return SandboxMode.disabled;
if (_autoAllowBash) return SandboxMode.autoAllow;
return SandboxMode.regular;
}
static SandboxMode getCurrentMode() {
if (!_enabled) return SandboxMode.disabled;
if (_autoAllowBash) return SandboxMode.autoAllow;
return SandboxMode.regular;
}