Checks if length of value is greater than or equal to the provided length.

const passwordMinLength = minLength(8);

passwordMinLength("hello"); // Error: minLength
passwordMinLength("Test123456"); // passes