We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3da59cc commit aab1647Copy full SHA for aab1647
packages/mongodb-memory-server-core/src/util/utils.ts
@@ -128,6 +128,10 @@ export async function ensureAsync(): Promise<void> {
128
return new Promise((res) => process.nextTick(res));
129
}
130
131
+/**
132
+ * Convert Partitial input into full-defaulted output
133
+ * @param opts Partitial input options
134
+ */
135
export function authDefault(opts: AutomaticAuth): Required<AutomaticAuth> {
136
return {
137
force: false,
0 commit comments