mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 00:17:37 +01:00
14 lines
348 B
JavaScript
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(/\.(.+)/);
|
|
}
|