Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 195 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 195 Bytes

tap

like map applys a function to each item in a list, but always returns the item.

api

tap(fn, list)

example

tap(v => console.log(v), list)

README