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.

constants.js 325B

12345678910111213
  1. 'use strict';
  2. const MIN_SUPPORTED_SERVER_VERSION = '2.6';
  3. const MAX_SUPPORTED_SERVER_VERSION = '4.2';
  4. const MIN_SUPPORTED_WIRE_VERSION = 2;
  5. const MAX_SUPPORTED_WIRE_VERSION = 8;
  6. module.exports = {
  7. MIN_SUPPORTED_SERVER_VERSION,
  8. MAX_SUPPORTED_SERVER_VERSION,
  9. MIN_SUPPORTED_WIRE_VERSION,
  10. MAX_SUPPORTED_WIRE_VERSION
  11. };