solid-ctrl-flow 5.0.0 → 5.0.1
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/index.mjs +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -219,7 +219,7 @@ const memoProps = (obj, equals) => new Proxy(obj, new MemoPropsHandler(getOwner(
|
|
|
219
219
|
const splitAndMemoProps = (obj, ...keys) => {
|
|
220
220
|
const out = splitProps(obj, ...keys);
|
|
221
221
|
for (var i = 0; i < keys.length; i++)
|
|
222
|
-
out[i] = memoProps(out[i]
|
|
222
|
+
out[i] = memoProps(out[i]);
|
|
223
223
|
return out;
|
|
224
224
|
};
|
|
225
225
|
class MemoPropsHandler {
|
package/dist/index.umd.js
CHANGED
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
const splitAndMemoProps = (obj, ...keys) => {
|
|
222
222
|
const out = solidJs.splitProps(obj, ...keys);
|
|
223
223
|
for (var i = 0; i < keys.length; i++)
|
|
224
|
-
out[i] = memoProps(out[i]
|
|
224
|
+
out[i] = memoProps(out[i]);
|
|
225
225
|
return out;
|
|
226
226
|
};
|
|
227
227
|
class MemoPropsHandler {
|