Update dependencies

This commit is contained in:
Thomas Oberndörfer
2019-08-09 14:45:50 +02:00
parent 93af442fff
commit 665708dbb9
4 changed files with 185 additions and 117 deletions

View File

@@ -25,7 +25,7 @@ const crypto = require('crypto');
* @return {boolean} If data is a string
*/
exports.isString = function(data) {
return typeof data === 'string' || String.prototype.isPrototypeOf(data);
return typeof data === 'string' || String.prototype.isPrototypeOf(data); // eslint-disable-line no-prototype-builtins
};
/**