Const
Finds the minimum value in a collection of numbers.
The minimum value found or +Infinity if the collection is empty
G.pipe( [5, 3, 9, 1, 7], G.min) // 1G.pipe( [], // empty array G.min) // +Infinity Copy
G.pipe( [5, 3, 9, 1, 7], G.min) // 1G.pipe( [], // empty array G.min) // +Infinity
Finds the minimum value in a collection of numbers.