porffor 0.58.5 → 0.58.7

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.
@@ -536,7 +536,7 @@ export const __Array_prototype_findIndex = (_this: any[], callbackFn: any, thisA
536
536
  };
537
537
 
538
538
  // @porf-typed-array
539
- export const __Array_prototype_findLastIndex = (_this: any[], callbackF: any, thisArg: any) => {
539
+ export const __Array_prototype_findLastIndex = (_this: any[], callbackFn: any, thisArg: any) => {
540
540
  let i: i32 = _this.length;
541
541
  while (i > 0) {
542
542
  if (!!callbackFn.call(thisArg, _this[--i], i, _this)) return i;