( listing )
| 6 | } from '~/helpers/categories.js' |
| 7 | |
| 8 | export function isDevice ( listing ) { |
| 9 | if ( !listing.hasOwnProperty('endpoint') ) return false |
| 10 | |
| 11 | return listing.endpoint.startsWith('/device/') |
| 12 | } |
| 13 | |
| 14 | export function isVideo ( app ) { |
| 15 | return app.hasOwnProperty('thumbnail') && app.hasOwnProperty('timestamps') |