Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

driver.js 161B

123456789101112131415
  1. 'use strict';
  2. /*!
  3. * ignore
  4. */
  5. let driver = null;
  6. module.exports.get = function() {
  7. return driver;
  8. };
  9. module.exports.set = function(v) {
  10. driver = v;
  11. };