Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
Also cleanup & drop ignored wildcard op-args
|
|
|
|
In the implementation of structured serialization in
`Deno.core.serialize`, whenever there is a serialization error, an
exception will be thrown with the message "Failed to serialize
response", even though V8 provides a message to use in such cases.
This change instead throws an exception with the V8-provided message,
if there is one.
|
|
Co-authored-by: Aaron O'Mullan <aaron.omullan@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Follow up to #13839, optimizing `base64_roundtrip` ~20x (~125ms => ~6.5ms)
|
|
|
|
|
|
|
|
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
Co-authored-by: Satya Rohith <me@satyarohith.com>
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
|
|
|
|
|
|
|
|
|
|
|
|
`DecompressionStream` (#13719)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This commit makes the error messages that one sees when passing
something other than a BufferSource to a (De)CompressionStream. The
WPT tests already pass, because they just check for error type
(TypeError), and not error message. A TypeError was already thrown for
invalid values via serde_v8.
|
|
|
|
|
|
This commit adds `readable` and `writable` properties to `Deno.File` and
`Deno.Conn`. This makes it very simple to use files and network sockets
with fetch or the native HTTP server.
|
|
|
|
servers (#13659)
|
|
|
|
Co-authored-by: Luca Casonato <hello@lcas.dev>
|
|
|
|
When using css coloring in the console, non-color values should be ignored rather than throw exceptions.
Fixes #13469
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|