mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const parseIcon = (profile, i) => {
|
||
|
const res = {
|
||
|
type: i.res || null,
|
||
|
title: i.text || null
|
||
|
}
|
||
|
if (i.fg) res.fgColor = i.fg
|
||
|
if (i.bg) res.bgColor = i.bg
|
||
|
return res
|
||
|
}
|
||
|
|
||
|
module.exports = parseIcon
|