Skip to content

Commit e32fa45

Browse files
authored
docs: update Node.js builtin list, alias sys to util (#1086)
1 parent 2cbf6c7 commit e32fa45

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

node/README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,38 +9,51 @@ deno standard library as it's a compatibility module.
99
## Supported Builtins
1010

1111
- [x] assert _partly_
12+
- [x] assert/strict _partly_
13+
- [ ] async_hooks
1214
- [x] buffer
1315
- [x] child_process _partly_
1416
- [ ] cluster
1517
- [x] console _partly_
1618
- [x] constants _partly_
1719
- [x] crypto _partly_
1820
- [ ] dgram
21+
- [ ] diagnostics_channel
1922
- [ ] dns
2023
- [x] events
2124
- [x] fs _partly_
25+
- [x] fs/promises _partly_
2226
- [ ] http
2327
- [ ] http2
2428
- [ ] https
29+
- [ ] inspector
2530
- [x] module
2631
- [ ] net
2732
- [x] os _partly_
2833
- [x] path
34+
- [x] path/posix
35+
- [x] path/win32
2936
- [ ] perf_hooks
3037
- [x] process _partly_
3138
- [x] querystring
3239
- [ ] readline
3340
- [ ] repl
3441
- [x] stream
42+
- [x] stream/promises
43+
- [ ] stream/web
3544
- [x] string_decoder
36-
- [ ] sys
45+
- [x] sys
3746
- [x] timers
47+
- [x] timers/promises
3848
- [ ] tls
49+
- [ ] trace_events
3950
- [x] tty _partly_
4051
- [x] url
4152
- [x] util _partly_
42-
- ~~v8~~ _can't implement_
53+
- [x] util/types _partly_
54+
- [ ] v8
4355
- [ ] vm
56+
- [ ] wasi
4457
- [ ] worker_threads
4558
- [ ] zlib
4659

node/sys.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from "./util.ts";
2+
export { default } from "./util.ts";

0 commit comments

Comments
 (0)