threepipe
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

SimpleTextExporter.ts 273B

12345678
  1. import {IExportParser} from '../IExporter'
  2. import {AnyOptions} from 'ts-browser-helpers'
  3. export class SimpleTextExporter implements IExportParser {
  4. async parseAsync(obj: any, _: AnyOptions): Promise<Blob> {
  5. return new Blob([obj], {type: 'text/plain'})
  6. }
  7. }