in src/autoscaler-common/assert-defined.js [24:31]
8 lines of code
2 McCabe index (conditional complexity)
function assertDefined(value, valueName = '') {
if (value == null) {
throw new Error(
`Fatal error: value ${valueName} must not be null/undefined.`,
);
}
return value;
}