sbd-npm 1.2.87 → 1.2.88

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.
Files changed (3) hide show
  1. package/constant.js +1 -0
  2. package/package.json +1 -1
  3. package/util.js +1 -1
package/constant.js CHANGED
@@ -81,6 +81,7 @@ const MenuList = [
81
81
  {'key': 'macro_new_investor', 'name': '新增投资者', 'url': '/2268c61c6d62cdc8c1c7143aa524e2f1'},
82
82
  {'key': 'macro_gold', 'name': '黄金ETF(GLD)', 'url': '/584b9ceb0c85571831f7211903147d47'},
83
83
  {'key': 'macro_crude', 'name': '原油', 'url': '/78f8b798631b52153ff029fd301f9b8a'},
84
+ {'key': 'macro_lithium_carbonate', 'name': '碳酸锂', 'url': '/0a807cf25435fb72861c0935bccb3720'},
84
85
  ]
85
86
  },
86
87
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.2.87",
3
+ "version": "1.2.88",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/util.js CHANGED
@@ -3808,7 +3808,7 @@ Array.prototype.min = function () {
3808
3808
  * @returns {number}
3809
3809
  */
3810
3810
  Object.size = function (obj) {
3811
- let size = 0, key;
3811
+ let size = 0;
3812
3812
  for (let key in obj) {
3813
3813
  if (obj.hasOwnProperty(key)) {
3814
3814
  size++;