(string)
| 22 | } |
| 23 | |
| 24 | export const isName = function (string) { |
| 25 | const match = regexName.exec(string); |
| 26 | return !(match === null || typeof match === 'undefined'); |
| 27 | } |
| 28 | |
| 29 | export function isExist(v) { |
| 30 | return typeof v !== 'undefined'; |
no outgoing calls
no test coverage detected