mirror of
https://github.com/JonasunderscoreJones/jonas_jones-api.git
synced 2025-10-23 17:19:18 +02:00
15 lines
161 B
JavaScript
15 lines
161 B
JavaScript
'use strict';
|
|
|
|
/*!
|
|
* ignore
|
|
*/
|
|
|
|
let driver = null;
|
|
|
|
module.exports.get = function() {
|
|
return driver;
|
|
};
|
|
|
|
module.exports.set = function(v) {
|
|
driver = v;
|
|
};
|