( featuredApps )
| 1 | import { getSiteUrl } from './url' |
| 2 | |
| 3 | function makeFeaturedAppsString ( featuredApps ) { |
| 4 | return featuredApps.slice(0, 5).map(app => app.name).join(', ') |
| 5 | } |
| 6 | |
| 7 | export function buildVideoStructuredData ( video, featuredApps, options = {} ) { |
| 8 | // console.log('video', video) |
no outgoing calls
no test coverage detected