package.src.util.debug.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapbox-gl Show documentation
Show all versions of mapbox-gl Show documentation
A WebGL interactive maps library
The newest version!
// @flow
import {extend} from './util';
import window from './window';
/**
* This is a private namespace for utility functions that will get automatically stripped
* out in production builds.
*
* @private
*/
export const Debug = {
extend(dest: Object, ...sources: Array): Object {
return extend(dest, ...sources);
},
run(fn: () => any) {
fn();
},
logToElement(message: string, overwrite: boolean = false, id: string = "log") {
const el = window.document.getElementById(id);
if (el) {
if (overwrite) el.innerHTML = '';
el.innerHTML += `
${message}`;
}
}
};