getCurrentMode static method

SandboxMode getCurrentMode()

Implementation

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