UNPKG

tus-js-client

Version:

A pure JavaScript client for the tus resumable upload protocol

11 lines (8 loc) 153 B
let isEnabled = false export function enableDebugLog() { isEnabled = true } export function log(msg) { if (!isEnabled) return console.log(msg) }