threepipe
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }