1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-23 15:49:44 -05:00

Rename //multipart/multipart.ts to //mime/multipart.ts (denoland/deno_std#420)

Original: aad0896346
This commit is contained in:
Vincent LE GOFF 2019-05-21 15:36:12 +02:00 committed by Ryan Dahl
parent 915b4f520b
commit b9ce3a6453
5 changed files with 5 additions and 3 deletions

View file

@ -5,7 +5,7 @@ type Closer = Deno.Closer;
type Reader = Deno.Reader;
type ReadResult = Deno.ReadResult;
type Writer = Deno.Writer;
import { FormFile } from "./formfile.ts";
import { FormFile } from "../multipart/formfile.ts";
import {
bytesFindIndex,
bytesFindLastIndex,

View file

@ -15,7 +15,7 @@ import {
scanUntilBoundary
} from "./multipart.ts";
import * as path from "../fs/path.ts";
import { FormFile, isFormFile } from "./formfile.ts";
import { FormFile, isFormFile } from "../multipart/formfile.ts";
import { StringWriter } from "../io/writers.ts";
const e = new TextEncoder();

2
mime/test.ts Normal file
View file

@ -0,0 +1,2 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import "./multipart_test.ts";

View file

@ -1,3 +1,2 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import "./formfile_test.ts";
import "./multipart_test.ts";

View file

@ -10,6 +10,7 @@ import "./http/test.ts";
import "./io/test.ts";
import "./log/test.ts";
import "./media_types/test.ts";
import "./mime/test.ts";
import "./multipart/test.ts";
import "./prettier/test.ts";
import "./strings/test.ts";