We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.7.1
Linux 6.2.0-26-generic x86_64 x86_64
import fs from "fs"; import assert from "assert"; const BIG_FILE = "some_file_bigger_than_2GB"; const BIG_FILE_SIZE = 15438888903; // actual file size const bigFileStat = fs.statSync(BIG_FILE, { bigint: false }); assert( bigFileStat.size === BIG_FILE_SIZE, `File ${BIG_FILE} should be ${BIG_FILE_SIZE}B but was ${bigFileStat.size}B` );
Should work with and without bigint set.
bigint
Negative values.
No response
The text was updated successfully, but these errors were encountered:
Duplicate of #849
Sorry, something went wrong.
bd66a9a
Thanks for reminding
Fixes oven-sh#3868
7ce493a
Fixes oven-sh#3868 Fixes oven-sh#849
No branches or pull requests
What version of Bun is running?
0.7.1
What platform is your computer?
Linux 6.2.0-26-generic x86_64 x86_64
What steps can reproduce the bug?
What is the expected behavior?
Should work with and without
bigint
set.What do you see instead?
Negative values.
Additional information
No response
The text was updated successfully, but these errors were encountered: