UNPKG

@triply/tus-js-client

Version:

A pure JavaScript client for the tus resumable upload protocol

9 lines 185 B
/* eslint no-console: "off" */ var isEnabled = false; export function enableDebugLog() { isEnabled = true; } export function log(msg) { if (!isEnabled) return; console.log(msg); }