UNPKG

tus-js-client-olalonde

Version:

A pure JavaScript client for the tus resumable upload protocol

10 lines (6 loc) 176 B
/* global: window */ const {btoa} = window; export function encode(data) { return btoa(unescape(encodeURIComponent(data))); } export const isSupported = "btoa" in window;