dolphindb 3.1.1 → 3.1.2
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 +1 -1
- package/browser.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +2 -2
package/browser.js
CHANGED
|
@@ -2957,7 +2957,7 @@ export class DDB {
|
|
|
2957
2957
|
}
|
|
2958
2958
|
let result;
|
|
2959
2959
|
if (function_definition_pattern.test(func))
|
|
2960
|
-
func = await this.define(func);
|
|
2960
|
+
func = await this.define(func, { urgent: options?.urgent });
|
|
2961
2961
|
if (convertable)
|
|
2962
2962
|
result = await this.call(func, args, options);
|
|
2963
2963
|
else {
|