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 +2 -2
- package/browser.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -3092,8 +3092,8 @@ export class DDB {
|
|
|
3092
3092
|
script =
|
|
3093
3093
|
'def () {\n' +
|
|
3094
3094
|
lines.slice(0, -1).indent().join_lines() +
|
|
3095
|
-
` return ${lines.last}\n
|
|
3096
|
-
|
|
3095
|
+
` return ${lines.last}\n` +
|
|
3096
|
+
'} ()\n';
|
|
3097
3097
|
}
|
|
3098
3098
|
return this.rpc('script', { script, urgent, listener, parse_object });
|
|
3099
3099
|
}
|