Uh oh!
There was an error while loading. Please reload this page.
doc: add missing examples and information to fs - #55298
Conversation
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
e2a544c to
267747eCompareshrenisc
commented
Oct 8, 2024
after research, i confirmed that the js code that I have written follows the cjs format. Could you tell me if there is something else you wanted to be done? |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
267747e to
2af7e01Compareshrenisc
commented
Oct 10, 2024
Hi, are there any more changes needed to be done? |
avivkeller
commented
Oct 10, 2024
@nodejs/fs PTAL |
2af7e01 to
24aeb2dCompareaduh95
commented
Oct 11, 2024
Can you fix the linter issues please? Let me know if you need help |
24aeb2d to
ff183c0Compareshrenisc
commented
Oct 11, 2024
I have resolved them now. Thank you |
| const fs = require('node:fs'); | ||
| // Calculate available space in bytes | ||
| fs.statfs('.', (err, stats) => { |
There was a problem hiding this comment.
This isn't the same as the other example:
| const fs = require('node:fs'); | |
| // Calculate available space in bytes | |
| fs.statfs('.', (err, stats) => { | |
| const { statfs } = require('node:fs'); | |
| // Calculate available space in bytes | |
| statfs('.', (err, stats) => { |
There was a problem hiding this comment.
This isn't the same as the other example:
i have corected it now
ff183c0 to
2d70df3Compareshrenisc
commented
Oct 12, 2024
can i get some help on this error: |
aduh95
commented
Oct 12, 2024
Is this an error you see locally? The output from the CI might be clearer to work with |
shrenisc
commented
Oct 12, 2024
no this is a CI error that i see on the checks. |
2d70df3 to
3a490ddCompareshrenisc
commented
Oct 12, 2024
I am still getting the same error when the PR is checked. |
Defined the return type for statfs.bsize. Added examples for statfs.bavail, statfs.bfree, statfs.blocks and statfs.files for clarity. Explained why statfs.type returns a int|bigint value and added a table with most commonly used magic numbers and their filesystems. Fixes: nodejs#50749
Defined the return type for statfs.bsize. Added examples for statfs.bavail, statfs.bfree, statfs.blocks and statfs.files for clarity. Explained why statfs.type returns a int|bigint value and added a table with most commonly used magic numbers and their filesystems. Fixes: nodejs#50749
Defined the return type for statfs.bsize. Added examples for statfs.bavail, statfs.bfree, statfs.blocks and statfs.files for clarity. Explained why statfs.type returns a int|bigint value and added a table with most commonly used magic numbers and their filesystems. Fixes: nodejs#50749
Defined the return type for statfs.bsize. Added examples for statfs.bavail, statfs.bfree, statfs.blocks and statfs.files for clarity. Explained why statfs.type returns a int|bigint value and added a table with most commonly used magic numbers and their filesystems. Fixes: nodejs#50749
Defined the return type for statfs.bsize. Added examples for statfs.bavail, statfs.bfree, statfs.blocks and statfs.files for clarity. Explained why statfs.type returns a int|bigint value and added a table with most commonly used magic numbers and their filesystems. Fixes: nodejs#50749
Defined the return type for statfs.bsize. Added examples for statfs.bavail, statfs.bfree, statfs.blocks and statfs.files for clarity. Explained why statfs.type returns a int|bigint value and added a table with most commonly used magic numbers and their filesystems. Fixes: nodejs#50749
added examples and type definitions Fixes:nodejs#50749
added examples and type definitions Fixes:nodejs#50749
3a490dd to
382edc1Compareshrenisc
commented
Oct 14, 2024
Hi, can you check now? All checks should pass now. |
aduh95
commented
May 27, 2026
Superseded by #62578 |
Added examples and provided return type definitions
Fixes: #50749