db-vendo-client/parse/icon.js
Jannis R 339d64e901
convert to ESM 💥📝
2022-11-18 19:20:03 +01:00

14 lines
250 B
JavaScript

const parseIcon = (ctx, i) => {
if (i.res === 'Empty') return null
const res = {
type: i.res || null,
title: i.text || i.txt || i.txtS || null
}
if (i.fg) res.fgColor = i.fg
if (i.bg) res.bgColor = i.bg
return res
}
export {
parseIcon,
}