We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ad04dc commit 5a01b35Copy full SHA for 5a01b35
src/Private/validate.js
@@ -4,7 +4,7 @@ const { isStrArray, strToArray } = require('../utils/arrayTools');
4
/**
5
* Validation Class, used internally to validate provided arguments
6
*/
7
-module.exports = class Validation {
+class Validation {
8
9
* Check if cache options are valid
10
* @param {Object} options Global Cache Options to be validated
@@ -87,4 +87,5 @@ module.exports = class Validation {
87
// eslint-disable-next-line no-console
88
if (nodeVersion < 14 ) console.warn(Errors.NODE_VERSION_WARN);
89
}
90
-};
+}
91
+module.exports = Validation;
0 commit comments