I do a MongoDB query like: ``` const query = { email: new RegExp('^' + escapeString(email) + '$', 'i'), // Case insensitive }; ``` In 3.0.0, this is not working with emails containing `-`. Do you know how I could write this using the new way to escape `-`?