Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
Keep in mind Buffer.toString() still exists, but returns [object Object].
Reason for removal of Buffer.toString() was that it implicitly used
TextDecoder with fixed "utf-8" encoding and no way to customize
the encoding.
|
|
Fix: URL constructor accepts a URL object which is not a base
|
|
This change is to prevent needed a separate stat syscall for each file
when using readdir.
For consistency, this PR also modifies std's `WalkEntry` interface to
extend `DirEntry` with an additional `path` field.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|