KOSASIH / SilkRoad

Found single char variable name JS-C1002
Anti-pattern
Minor
8 months agoa year old
Variable name is too small
 511    var methods = [];
 512
 513    for (var methodName in proto) {
 514      var m = proto[methodName]; 515
 516      if (typeof m !== 'function') {
 517        continue;
Variable name is too small
 284            return makeRequire(name);
 285        },
 286        exports: function (name) {
 287            var e = defined[name]; 288            if (typeof e !== 'undefined') {
 289                return e;
 290            } else {
Variable name is too small
 511    var methods = [];
 512
 513    for (var methodName in proto) {
 514      var m = proto[methodName]; 515
 516      if (typeof m !== 'function') {
 517        continue;
Variable name is too small
 284            return makeRequire(name);
 285        },
 286        exports: function (name) {
 287            var e = defined[name]; 288            if (typeof e !== 'undefined') {
 289                return e;
 290            } else {
Variable name is too small
144            var m = d.getMinutes();
145            m = (m < 10) ? ("0" + m) : m;
146
147            var s = d.getSeconds();148            s = (s < 10) ? ("0" + s) : s;
149
150            datetext = datetext + " " + h + ":" + m + ":" + s;