@absolutejs/sync 1.7.2 → 1.7.3
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/dist/engine/index.js +3 -3
- package/dist/engine/index.js.map +3 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +3 -3
- package/package.json +3 -3
package/dist/engine/index.js
CHANGED
|
@@ -1093,7 +1093,7 @@ var loadIsolatedJsc = async () => {
|
|
|
1093
1093
|
}
|
|
1094
1094
|
};
|
|
1095
1095
|
var wrap = (source) => `
|
|
1096
|
-
(
|
|
1096
|
+
(() => {
|
|
1097
1097
|
const userFn = (${source});
|
|
1098
1098
|
if (typeof userFn !== 'function') {
|
|
1099
1099
|
throw new Error(
|
|
@@ -1107,7 +1107,7 @@ var wrap = (source) => `
|
|
|
1107
1107
|
delete: (table, row) => __syncAction('delete', table, row),
|
|
1108
1108
|
change: (collection, change) => __syncAction('change', collection, change)
|
|
1109
1109
|
};
|
|
1110
|
-
return
|
|
1110
|
+
return userFn(args, ctx, actions);
|
|
1111
1111
|
})()
|
|
1112
1112
|
`;
|
|
1113
1113
|
var DEFAULT_RECYCLE_CONTEXT_AFTER = 256;
|
|
@@ -2811,5 +2811,5 @@ export {
|
|
|
2811
2811
|
CdcConsumerSlowError
|
|
2812
2812
|
};
|
|
2813
2813
|
|
|
2814
|
-
//# debugId=
|
|
2814
|
+
//# debugId=7E100BFB331BB7CE64756E2164756E21
|
|
2815
2815
|
//# sourceMappingURL=index.js.map
|