I have the following simple email validation regex: /(.+){2,}@(.+){2,}\.(.+){2,}/
This works fine on Firefox, Chrome etc, but fails on Safari.
Why would this perfectly valid regex fail on Safari? I could not find elements in the regex that are not supported by Safari.
/(.+){2,}@(.+){2,}\.(.+){2,}/.test('123@abc.nl');
Above fails on Safari, but not on any other browser.