sanitizeExit property

bool? get sanitizeExit

Ensure the bench case does not prematurely cause the process to exit, for example via a call to {@linkcode Deno.exit}.

@default {true}

Implementation

_i2.bool? get sanitizeExit => _i3.getProperty(
      this,
      'sanitizeExit',
    );
set sanitizeExit (bool? value)

Implementation

set sanitizeExit(_i2.bool? value) {
  _i3.setProperty(
    this,
    'sanitizeExit',
    value ?? _i6.undefined,
  );
}