@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/index.js
CHANGED
|
@@ -725,7 +725,7 @@ var loadIsolatedJsc = async () => {
|
|
|
725
725
|
}
|
|
726
726
|
};
|
|
727
727
|
var wrap = (source) => `
|
|
728
|
-
(
|
|
728
|
+
(() => {
|
|
729
729
|
const userFn = (${source});
|
|
730
730
|
if (typeof userFn !== 'function') {
|
|
731
731
|
throw new Error(
|
|
@@ -739,7 +739,7 @@ var wrap = (source) => `
|
|
|
739
739
|
delete: (table, row) => __syncAction('delete', table, row),
|
|
740
740
|
change: (collection, change) => __syncAction('change', collection, change)
|
|
741
741
|
};
|
|
742
|
-
return
|
|
742
|
+
return userFn(args, ctx, actions);
|
|
743
743
|
})()
|
|
744
744
|
`;
|
|
745
745
|
var DEFAULT_RECYCLE_CONTEXT_AFTER = 256;
|
|
@@ -2350,5 +2350,5 @@ export {
|
|
|
2350
2350
|
createPresenceHub
|
|
2351
2351
|
};
|
|
2352
2352
|
|
|
2353
|
-
//# debugId=
|
|
2353
|
+
//# debugId=5E4321DCD1FB65A764756E2164756E21
|
|
2354
2354
|
//# sourceMappingURL=index.js.map
|