UNPKG

@alucpro/note-tool

Version:

A NodeJS script that deal with markdown note.

10 lines (7 loc) 190 B
const ctrl = {}; const enableDebugLogKey = Symbol('primaryKey'); ctrl[enableDebugLogKey] = false; function log(...args) { ctrl[enableDebugLogKey] && console.log(args); } export { log };