| 1234 | |
| 1235 | const emailRegex = /[A-z0-9._%+-]+@[A-z0-9.-]+\.[A-z]{2,63}/ |
| 1236 | const isValidEmail = email => emailRegex.test(email != null ? email.trim().toLowerCase() : undefined) |
| 1237 | |
| 1238 | const formatStudentLicenseStatusDate = function (status, date) { |
| 1239 | const string = (() => { |
nothing calls this directly
no outgoing calls
no test coverage detected