dolphindb 2.0.932 → 2.0.934

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
@@ -1181,7 +1181,7 @@ export class DdbObj {
1181
1181
  }
1182
1182
  return String(this.value);
1183
1183
  })();
1184
- return `${options?.colors ? blue(type) : type}(${this.name ? `'${this.name}', ` : ''}${data})\n`;
1184
+ return `${options?.colors ? blue(type) : type}(${this.name ? `'${this.name}', ` : ''}${data})`;
1185
1185
  }
1186
1186
  inspect_type() {
1187
1187
  const tname = DdbType[this.type];