1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-27 07:45:08 +02:00
keeweb/app/scripts/comp/runtime-info.js
2017-04-08 18:31:38 +02:00

12 lines
284 B
JavaScript

const Launcher = require('../comp/launcher');
const RuntimeInfo = {
version: '@@VERSION',
buildDate: '@@DATE',
commit: '@@COMMIT',
userAgent: navigator.userAgent,
launcher: Launcher ? Launcher.name + ' v' + Launcher.version : ''
};
module.exports = RuntimeInfo;