UNPKG

standard-data-structures

Version:

A collection of standard data-structures for node and browser

5 lines (4 loc) 124 B
/** * ID function that takes in a value and returns the same value as output. */ export declare const id: <A>(A: A) => A;