6 lines
140 B
JavaScript
6 lines
140 B
JavaScript
const Debug = (arg = window.Metamaps) => {
|
|
console.debug(arg)
|
|
console.debug(`Metamaps Version: ${arg.VERSION}`)
|
|
}
|
|
|
|
export default Debug
|