db-vendo-client/parse/icon.js

14 lines
217 B
JavaScript
Raw Normal View History

2019-08-30 19:19:31 +02:00
'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