UNPKG

@future-widget-lab/safe-ops

Version:

A set of helper functions for performing operations safely, preventing runtime errors from disrupting your application.

7 lines (6 loc) 139 B
export type Reducer<TInput, TOutput> = ( accumulator: TOutput, currentValue: TInput, index: number, array: Array<TInput> ) => TOutput;