Get the minimum value in an array.
$ npm install --save ml-array-min
import min from 'ml-array-min'; const result = min([1, 5, 3, 2, 4]); // 1
MIT