^\S\n
add this between the square brackets
This is a double negative value that checks for non-non-spaces or non-newlines.
It will check only a space , but not a new line. Your test should look like this:
/^[a-z^\S\n]+$/i.test(value)
: @Greg Bacon answer
EDIT: A-Z,