index.tsx 242 B

1234567891011121314
  1. import React, { FC } from 'react';
  2. import streamify from './stream-adapter';
  3. const canStream = 'stream' in File.prototype;
  4. type Preset = {
  5. fflate: string;
  6. uzip: string;
  7. jszip: string;
  8. };
  9. const presets: Record<string, string> = {
  10. }