( maybeNumber )
| 17 | } |
| 18 | |
| 19 | export function isPositiveNumberString ( maybeNumber ) { |
| 20 | if ( !isString( maybeNumber ) ) return false |
| 21 | |
| 22 | return /\d+$/.test( maybeNumber ) |
| 23 | } |
| 24 | |
| 25 | |
| 26 | export function isValidHttpUrl( maybeUrl, allowUnsecure = false ) { |
nothing calls this directly
no test coverage detected