dolphindb 3.0.118 → 3.0.119

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
@@ -3114,8 +3114,8 @@ export class DDB {
3114
3114
  script =
3115
3115
  'def () {\n' +
3116
3116
  lines.slice(0, -1).indent().join_lines() +
3117
- ` return ${lines.last}\n`;
3118
- '} ()\n';
3117
+ ` return ${lines.last}\n` +
3118
+ '} ()\n';
3119
3119
  }
3120
3120
  return this.rpc('script', { script, urgent, listener, parse_object });
3121
3121
  }