The dot (.) in regular expressions doesn't match line terminator characters:
console.log(/%.$/.test('\n')) // false
The /s expression (dotAll) flag fixes this.
/s
console.log(/^.$/s.test("\n")); // true