mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
7 lines
No EOL
160 B
JavaScript
7 lines
No EOL
160 B
JavaScript
import { getSetting } from './settings.js';
|
|
|
|
export const debug = function() {
|
|
if (getSetting('debug', false)) {
|
|
console.log.apply(null, arguments);
|
|
}
|
|
} |