mirror of
https://github.com/developit/microbundle.git
synced 2026-01-25 14:06:50 +00:00
7 lines
119 B
JavaScript
7 lines
119 B
JavaScript
const DEBUG = true;
|
|
if (DEBUG) {
|
|
console.log('debug mode', DEBUG);
|
|
} else {
|
|
console.log('production mode', DEBUG);
|
|
}
|