mirror of
https://github.com/denoland/deno.git
synced 2025-08-02 18:12:39 +00:00
Add support for fetch() headers (#727)
This commit is contained in:
parent
cb6c78c6d2
commit
41c70b154f
8 changed files with 137 additions and 21 deletions
|
@ -4,8 +4,8 @@ import { flatbuffers } from "flatbuffers";
|
|||
import * as dispatch from "./dispatch";
|
||||
|
||||
/**
|
||||
* Synchronously renames (moves) oldpath to newpath. If newpath already exists
|
||||
* and is not a directory, Rename replaces it. OS-specific restrictions may
|
||||
* Synchronously renames (moves) oldpath to newpath. If newpath already exists
|
||||
* and is not a directory, Rename replaces it. OS-specific restrictions may
|
||||
* apply when oldpath and newpath are in different directories.
|
||||
*
|
||||
* import { renameSync } from "deno";
|
||||
|
@ -16,8 +16,8 @@ export function renameSync(oldpath: string, newpath: string): void {
|
|||
}
|
||||
|
||||
/**
|
||||
* Renames (moves) oldpath to newpath. If newpath already exists
|
||||
* and is not a directory, Rename replaces it. OS-specific restrictions may
|
||||
* Renames (moves) oldpath to newpath. If newpath already exists
|
||||
* and is not a directory, Rename replaces it. OS-specific restrictions may
|
||||
* apply when oldpath and newpath are in different directories.
|
||||
*
|
||||
* import { rename } from "deno";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue