You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
napi_assert(info[5].IsNumber()); // finenapi_assert(info[6].IsNumber()); // the info[6] is the 7th, failednapi_assert(info[7].IsNumber()); // if more than 7 args, the last one will failed.napi_assert(info[8].IsNumber()); // if more than 7 args, the last one will failed.
The text was updated successfully, but these errors were encountered:
* napi fixes
* Make bcrypt work
* Always return this
* Fixesoven-sh#7685
* [autofix.ci] apply automated fixes
* Update napi.cpp
* Make it clearer what this is doing
---------
Co-authored-by: Jarred Sumner <[email protected]>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
What version of Bun is running?
1.0.18+36c316a24
What platform is your computer?
Fedora 39 Linux 6.6.4-200.fc39.x86_64
What steps can reproduce the bug?
The minimal reproducable example here:
Test in GitHub Actions here.
What is the expected behavior?
Like Node.js.
What do you see instead?
The 7th argument
info[6].IsNumber()
assert failed.Additional information
The text was updated successfully, but these errors were encountered: