Skip to content

Commit

Permalink
fix(utils): remove default export
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
Default-export from "utils" got removed, import it now with "{ generateDbName }"
  • Loading branch information
hasezoey committed Mar 14, 2021
1 parent e0751d7 commit 102e4b0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/mongodb-memory-server-core/src/util/utils.ts
Expand Up @@ -15,8 +15,6 @@ export function generateDbName(dbName?: string): string {
return dbName || uuidv4();
}

export default generateDbName;

/**
* Extracts the host and port information from a mongodb URI string.
* @param {string} uri mongodb URI
Expand Down

0 comments on commit 102e4b0

Please sign in to comment.