0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 00:17:37 +01:00
mongodb/jstests/libs/namespace_utils.js
2023-08-06 20:48:04 +00:00

14 lines
348 B
JavaScript

/**
* Returns the collection name extracted from a namespace string.
*/
export function getCollectionNameFromFullNamespace(ns) {
return ns.split(/\.(.+)/)[1];
}
/**
* Returns the database and collection name extracted from a namespace string.
*/
export function getDBNameAndCollNameFromFullNamespace(ns) {
return ns.split(/\.(.+)/);
}