import { Collector } from "../collector"; export function last () : Collector { return Collector.of( () => ( { value: null } ), ( state, item ) => state.value = item, ( _, stateB ) => stateB, state => state.value ); }