Age | Commit message (Collapse) | Author |
|
|
|
* My original implementation of `fs.appendFile` used an async API, which, though
it would work fine as a polyfill, wasn't an exact match with the Node API. This PR
reworks that API to mimic the Node API fully as a synchronous void function with
an async internal implementation.
* Refactor move of other internal fs `dirent` and `dir` classes to the _fs internal
directory.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Node's os module exports a number of methods that evaluate to themselves
when coerced to a primitive.
I.e., `"" + os.arch` and `os.arch()` evaluate to the same string, and
now Deno's shims do too.
|
|
|
|
|
|
|
|
Fixes #3324
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
functionality (#3821)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/deps/https/deno.land/std -> js/std
|