Skip to content
New issue

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

feat(NODE-4711)!: remove evalFunctions option #539

Merged
merged 10 commits into from
Dec 9, 2022
Prev Previous commit
Next Next commit
test: fix tsd test
nbbeeken committed Dec 8, 2022

Verified

This commit was signed with the committer’s verified signature.
renovate-bot Mend Renovate
commit 5e907f52643ec4e47f1fc72567cb4d50b0995b78
2 changes: 1 addition & 1 deletion test/types/bson.test-d.ts
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ expectType<(radix?: number) => string>(Int32.prototype.toString);
expectType<() => Decimal128Extended>(Decimal128.prototype.toJSON);
expectType<
() => {
code: string | Function;
code: string;
scope?: Document;
}
>(Code.prototype.toJSON);