mirror of
https://github.com/denoland/deno.git
synced 2025-01-11 16:42:21 -05:00
Rename //multipart/multipart.ts to //mime/multipart.ts (denoland/deno_std#420)
Original: aad0896346
This commit is contained in:
parent
915b4f520b
commit
b9ce3a6453
5 changed files with 5 additions and 3 deletions
|
@ -5,7 +5,7 @@ type Closer = Deno.Closer;
|
||||||
type Reader = Deno.Reader;
|
type Reader = Deno.Reader;
|
||||||
type ReadResult = Deno.ReadResult;
|
type ReadResult = Deno.ReadResult;
|
||||||
type Writer = Deno.Writer;
|
type Writer = Deno.Writer;
|
||||||
import { FormFile } from "./formfile.ts";
|
import { FormFile } from "../multipart/formfile.ts";
|
||||||
import {
|
import {
|
||||||
bytesFindIndex,
|
bytesFindIndex,
|
||||||
bytesFindLastIndex,
|
bytesFindLastIndex,
|
|
@ -15,7 +15,7 @@ import {
|
||||||
scanUntilBoundary
|
scanUntilBoundary
|
||||||
} from "./multipart.ts";
|
} from "./multipart.ts";
|
||||||
import * as path from "../fs/path.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";
|
import { StringWriter } from "../io/writers.ts";
|
||||||
|
|
||||||
const e = new TextEncoder();
|
const e = new TextEncoder();
|
2
mime/test.ts
Normal file
2
mime/test.ts
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||||
|
import "./multipart_test.ts";
|
|
@ -1,3 +1,2 @@
|
||||||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||||
import "./formfile_test.ts";
|
import "./formfile_test.ts";
|
||||||
import "./multipart_test.ts";
|
|
||||||
|
|
1
test.ts
1
test.ts
|
@ -10,6 +10,7 @@ import "./http/test.ts";
|
||||||
import "./io/test.ts";
|
import "./io/test.ts";
|
||||||
import "./log/test.ts";
|
import "./log/test.ts";
|
||||||
import "./media_types/test.ts";
|
import "./media_types/test.ts";
|
||||||
|
import "./mime/test.ts";
|
||||||
import "./multipart/test.ts";
|
import "./multipart/test.ts";
|
||||||
import "./prettier/test.ts";
|
import "./prettier/test.ts";
|
||||||
import "./strings/test.ts";
|
import "./strings/test.ts";
|
||||||
|
|
Loading…
Reference in a new issue