idFirst<A, B> function

A idFirst<A, B>(
  1. A a,
  2. B b
)

Returns the first argument from passed two.

Implementation

A idFirst<A, B>(A a, B b) => a;