https://github.com/Automattic/mongoose
Raw File
Tip revision: fcda25dae7ea3b74a3536197b220d12bf52a8b3c authored by Valeri Karpov on 14 June 2023, 18:14:45 UTC
Merge pull request #13506 from Automattic/IslandRhythms/optimistic-concurrency-array
Tip revision: fcda25d
driver.js
'use strict';

/*!
 * ignore
 */

let driver = null;

module.exports.get = function() {
  return driver;
};

module.exports.set = function(v) {
  driver = v;
};
back to top