(collection: string)
| 269 | } |
| 270 | |
| 271 | withCollection(collection: string): MongoDBCollectionNamespace { |
| 272 | return new MongoDBCollectionNamespace(this.db, collection); |
| 273 | } |
| 274 | |
| 275 | static fromString(namespace?: string): MongoDBNamespace { |
| 276 | if (typeof namespace !== 'string' || namespace === '') { |
no outgoing calls
no test coverage detected