This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
simple-disco-store/debug.js

7 lines
80 B
JavaScript

debug = false;
function debug_alert(msg) {
if (debug) {
alert(msg);
}
}