pollsky
Version:
Chained Polling Library for Node.js: Friendly API with no external dependencies.
11 lines • 329 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.debug = void 0;
const DEBUG = process.env.DEBUG === 'pollsky';
const debug = (message, ...optionalParams) => {
if (DEBUG) {
console.debug(message, ...optionalParams);
}
};
exports.debug = debug;
//# sourceMappingURL=debug.js.map