sbd-npm 1.1.65 → 1.1.66

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 (2) hide show
  1. package/package.json +1 -1
  2. package/util.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.1.65",
3
+ "version": "1.1.66",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/util.js CHANGED
@@ -2112,7 +2112,7 @@ const Util = {
2112
2112
  pack_holder_num: function (item) {
2113
2113
  if (item["holder_num"] && item["holder_num"] > 0) {
2114
2114
  let url = Util.get_url("holder_num") + "?code=" + item["code"];
2115
- le pre_holder_num = item["pre_holder_num"] ? item["pre_holder_num"] : 0;
2115
+ let pre_holder_num = item["pre_holder_num"] ? item["pre_holder_num"] : 0;
2116
2116
  return Util.pack_html_link(url, Util.digit_compare_trend(item["holder_num"], pre_holder_num));
2117
2117
  }
2118
2118
  return "--";