feature(util) init Util only if it is not present in global scrope

This commit is contained in:
coderaiser 2014-11-04 06:46:08 -05:00
parent fa42c9a1ea
commit ae37b43632

View file

@ -5,7 +5,7 @@
if (typeof module === 'object' && module.exports)
module.exports = new UtilProto();
else
else if (!Scope.Util)
Scope.Util = new UtilProto();
function UtilProto() {