@platform/http
Version:
Tools for working with HTTP.
11 lines (10 loc) • 291 B
JavaScript
import { create } from './http.create';
import { fetch } from './fetch';
import { Mime, toRawHeaders, fromRawHeaders } from '../common';
export class Http {
}
Http.create = create;
Http.fetch = fetch;
Http.mime = Mime;
Http.toRawHeaders = toRawHeaders;
Http.fromRawHeaders = fromRawHeaders;