UNPKG

js-awe

Version:

Awesome js utils including - plan: An Asynchronous control flow with a functional taste - Chrono: record and visualize timelines in the console

15 lines (9 loc) 212 B
import { filterMap} from 'js-awe' const result = filterMap((el, index)=> el % index, (el,index)=> ({a:index}), [0,1,7,3,4,5,9]) result /* Hovering in result gives type: const result: { a: number; }[] */