2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-15 18:13:00 +00:00
RTL/common.js

14 lines
237 B
JavaScript
Raw Normal View History

var common = {};
2019-01-01 16:26:51 +00:00
common.lnd_server_url = '';
common.convertToBTC = (num) => {
return (num / 100000000).toFixed(6);
};
common.convertTimestampToDate = (num) => {
2018-11-24 20:11:23 +00:00
return new Date(+num*1000).toUTCString();
};
module.exports = common;