UNPKG

@ducna01120/fleetops-engine

Version:

Fleet & Transport Management Extension for Fleetbase

14 lines (10 loc) 299 B
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; });