UNPKG

touhou-tagger

Version:

从 THBWiki 自动填写东方 Project CD 曲目信息.

16 lines (15 loc) 345 B
let debug = false; export const setDebug = (value) => { debug = value; }; const invoke = (methodName) => { return (...args) => { if (!debug) { return; } console[methodName](...args); }; }; export const log = invoke('log'); export const warn = invoke('warn'); export const error = invoke('error');