MCPcopy Index your code
hub / github.com/bugy/script-server / getFullStatus

Function getFullStatus

web-src/src/common/store/executions-module.js:117–123  ·  view source on GitHub ↗
(log)

Source from the content-addressed store, hash-verified

115}
116
117function getFullStatus(log) {
118 if (!isNull(log.exitCode) && !isNull(log.status)) {
119 return log.status + ' (' + log.exitCode + ')'
120 } else if (!isNull(log.status)) {
121 return log.status;
122 }
123}
124
125function findById(executions, id) {
126 return executions.find(execution => execution.id === id)

Callers 1

translateExecutionLogFunction · 0.85

Calls 1

isNullFunction · 0.90

Tested by

no test coverage detected