isDebug static method

bool isDebug()

Implementation

static bool isDebug() {
  bool inDebugMode = false;
  assert(inDebugMode = true);
  return inDebugMode;
}