keeweb/app/scripts/util/icon-url.js

12 lines
244 B
JavaScript
Raw Normal View History

2017-01-31 07:50:28 +01:00
const kdbxweb = require('kdbxweb');
2015-11-21 21:14:21 +01:00
2017-01-31 07:50:28 +01:00
const IconUrl = {
2019-08-18 10:17:09 +02:00
toDataUrl(iconData) {
2019-08-18 08:05:38 +02:00
return iconData
? 'data:image/png;base64,' + kdbxweb.ByteUtils.bytesToBase64(iconData)
: null;
2015-11-21 21:14:21 +01:00
}
};
module.exports = IconUrl;