mapRight
주어진 배열의 각 요소에 대해 오른쪽에서 왼쪽으로
순회하며 제공된 콜백 함수
를 호출하고, 결과를 새로운 배열로 반환하는 함수입니다.
Code
Interface
typescript
function mapRight<T, U>(
arr: T[] | readonly T[],
callback: (currentValue: T, index: number, arr: T[] | readonly T[]) => U,
): U[];
Usage
typescript
import { mapRight } from '@modern-kit/utils';
mapRight([1, 2, 3], (item, index) => item + index);
// [5, 3, 1]