Skip to main content
Module

x/mongoose/lib/driver.js

MongoDB object modeling designed to work in an asynchronous environment.
Go to Latest
File
'use strict';
/*! * ignore */
let driver = null;
module.exports.get = function() { return driver;};
module.exports.set = function(v) { driver = v;};