summaryrefslogtreecommitdiff
path: root/jstests/libs/namespace_utils.js
blob: 16e6e97be4b3b471e373c6d55a649238043f1ae2 (plain)
1
2
3
4
5
6
/**
 * Returns the collection name extracted from a namespace string.
 */
function getCollectionNameFromFullNamespace(ns) {
    return ns.split(/\.(.+)/)[1];
}