(str)
| 4 | return (/^([A-Za-z0-9_\-\.\u4e00-\u9fa5])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,8})$/).test(str) |
| 5 | }, |
| 6 | number(str) { |
| 7 | return (/^[0-9]$/).test(str) |
| 8 | }, |
| 9 | english(str) { |
| 10 | return (/^[a-zA-Z]+$/).test(str) |
| 11 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected