(text)
| 456 | }, |
| 457 | |
| 458 | isValidEmail(text) { |
| 459 | // returns bool |
| 460 | return Utils.emailRegex.test(text) |
| 461 | }, |
| 462 | |
| 463 | isValidURL(url) { |
| 464 | return Utils.urlRegex.test(url) |
nothing calls this directly
no test coverage detected
searching dependent graphs…