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

10 lines
230 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 = {
2015-11-21 21:14:21 +01:00
toDataUrl: function(iconData) {
return iconData ? 'data:image/png;base64,' + kdbxweb.ByteUtils.bytesToBase64(iconData) : null;
}
};
module.exports = IconUrl;