Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / redis / lib / util.js
1 // Support for very old versions of node where the module was called "sys".  At some point, we should abandon this.
2
3 var util;
4
5 try {
6     util = require("util");
7 } catch (err) {
8     util = require("sys");
9 }
10
11 module.exports = util;