Age | Commit message (Collapse) | Author |
|
|
|
Deno.build.os values have changed to correspond to standard LLVM target triples
"win" -> "windows"
"mac" -> "darwin"
|
|
|
|
This commit renames sync io interfaces:
* SyncReader -> ReaderSync
* SyncWriter -> WriterSync
* SyncSeeker -> SeekerSync
|
|
This commit removes overload of Deno.test() that accepted named
function.
|
|
This patch also increases the resolution of reported file times to
sub-millisecond precision.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This commit removes Deno.OpenMode along with overloaded variants
of Deno.open() and Deno.openSync() that used OpenMode.
|
|
|
|
|
|
This commit renames all APIs containing "TLS" to use camel case
(connectTLS -> connectTls, etc.)
|
|
|
|
* rename Deno.toAsyncIterator() to Deno.iter()
* adds sync version Deno.iterSync()
* adds optional second argument for buffer size
|
|
|
|
|
|
|
|
|
|
|
|
this (#4783)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- Removes the __fetch namespace from `deno types`
- Response.redirect should be a static.
- Response.body should not be AsyncIterable.
- Disables the deno_proxy benchmark
- Makes std/examples/curl.ts buffer the body before printing to stdout
|
|
|
|
|
|
|
|
|
|
|
|
I just tried it and found that using application/typescript, the browser will download
the file directly, I think that .ts should be mapped to application/javascript or
text/typescript
|
|
|
|
|
|
|
|
|