ps-toolkit-ui 1.4.8 → 1.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -322,18 +322,16 @@
322
322
  var _this = this;
323
323
  if (v === void 0) { v = null; }
324
324
  if (k != null && (/^-?\d+$/.test(k) || /^\d+\.\d+$/.test(k))) {
325
- console.log(area, c, k, v, '=>', k);
326
325
  return k;
327
326
  }
328
327
  var cv = _.get(this.lang, area ? area + "." + c + "." + k : c + "." + k);
329
328
  if (!cv) {
330
- cv = _.get(this.lang, "public." + c + "." + k);
329
+ cv = _.get(this.lang, "Public." + c + "." + k);
331
330
  }
332
331
  if (!cv) {
333
- cv = _.get(this.lang, "public." + k);
332
+ cv = _.get(this.lang, "Public." + k);
334
333
  }
335
334
  if (!cv) {
336
- console.log(area, c, k, v, '=>', k);
337
335
  return k;
338
336
  }
339
337
  if (v !== null) {
@@ -346,7 +344,6 @@
346
344
  cv = cv.replace('{}', this.get(area, c, v, null));
347
345
  }
348
346
  }
349
- console.log(area, c, k, v, '=>', cv);
350
347
  return cv;
351
348
  };
352
349
  return LangClass;