metamaps--metamaps/frontend/src/Metamaps/Debug.js

10 lines
353 B
JavaScript
Raw Normal View History

2017-01-21 18:09:26 +00:00
const Debug = function(arg = window.Metamaps) => {
if (arg === undefined && typeof window !== 'undefined') arg = window.Metamaps
2016-09-22 10:31:56 +00:00
console.debug(arg)
2017-01-21 18:09:26 +00:00
console.debug(`Metamaps Version: ${arg.ServerData.VERSION}`)
console.debug(`Build: ${arg.ServerData.BUILD}`)
console.debug(`Last Updated: ${arg.ServerData.LAST_UPDATED}`)
}
export default Debug