inferred-types 0.48.4 → 0.48.6

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.
@@ -3319,7 +3319,7 @@ var addFnToProps = (props, _clone_fn) => (fn2) => {
3319
3319
  // src/runtime/initializers/createFnWithProps.ts
3320
3320
  var createFnWithProps = (fn2, props, narrowing = false) => {
3321
3321
  const fnWithProps = fn2;
3322
- for (const prop of keysOf(props)) {
3322
+ for (let prop of keysOf(props)) {
3323
3323
  fnWithProps[prop] = props[prop];
3324
3324
  }
3325
3325
  return isTrue(narrowing) ? fnWithProps : fnWithProps;