UNPKG
@lipagas/fleetops-engine
Version:
latest (0.4.37)
0.4.37
0.4.36
0.4.35
0.4.34
0.4.33
0.4.32
0.4.31
0.4.30
0.4.29
Fleet & Transport Management Extension for Fleetbase
github.com/lipagas/fleetops
lipagas/fleetops
@lipagas/fleetops-engine
/
addon
/
helpers
/
flow-raw-status.js
14 lines
(10 loc)
•
299 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { helper } from
'@ember/component/helper'
; export default helper(
function
flowRawStatus
([status])
{
if
(!
status
|| typeof
status
!==
'string'
) {
return
''
; }
if
(
status
.includes(
'|'
)) {
return
status
.slice(
status
.indexOf(
'|'
) +
1
); }
return
status
; });