export function log()

in src/index.ts [11:15]


export function log(...args: any[]) {
    if (LOG_ENABLED) {
        console.error(...args);
    }
}