1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-22 07:16:38 +02:00
keeweb/app/scripts/util/icon-url.js
2019-08-18 10:17:09 +02:00

12 lines
244 B
JavaScript

const kdbxweb = require('kdbxweb');
const IconUrl = {
toDataUrl(iconData) {
return iconData
? 'data:image/png;base64,' + kdbxweb.ByteUtils.bytesToBase64(iconData)
: null;
}
};
module.exports = IconUrl;