db-vendo-client/parse/icon.js

14 lines
232 B
JavaScript
Raw Normal View History

2019-08-30 19:19:31 +02:00
'use strict'
const parseIcon = (ctx, i) => {
2019-08-30 19:19:31 +02:00
const res = {
type: i.res || null,
title: i.text || i.txt || i.txtS || null
2019-08-30 19:19:31 +02:00
}
if (i.fg) res.fgColor = i.fg
if (i.bg) res.bgColor = i.bg
return res
}
module.exports = parseIcon