dolphindb 2.0.961 → 2.0.963

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.
package/browser.js CHANGED
@@ -1524,7 +1524,7 @@ export function format(type, value, le, options = {}) {
1524
1524
  return colors ? green(str) : str;
1525
1525
  }
1526
1526
  default:
1527
- return String(value);
1527
+ return value === null ? get_nullstr() : String(value);
1528
1528
  }
1529
1529
  }
1530
1530
  /** 格式化向量、集合中的第 index 项为字符串 formatted vector, the index-th item in the collection is a string */