Checks if length of value is equal to the provided length.

const nonEmpty = notLength(0);

nonEmpty(""); // Error: notLength
nonEmpty("hello"); // passes