mirror of https://github.com/mongodb/mongo
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(/\.(.+)/);
|
|
}
|