Sign in
apache
/
apex-malhar
/
ByteArrayToString
/
.
/
web
/
demos
/
package
/
node_modules
/
redis
/
lib
/
util.js
blob: fc255ae9536317c6163686f24e662d2019f5f417 [
file
] [
log
] [
blame
]
// Support for very old versions of node where the module was called "sys". At some point, we should abandon this.
var
util
;
try
{
util
=
require
(
"util"
);
}
catch
(
err
)
{
util
=
require
(
"sys"
);
}
module
.
exports
=
util
;