mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
// Universal Imports Only
|
|
|
|
export function isString( maybeString ) {
|
|
return (typeof maybeString === 'string' || maybeString instanceof String)
|
|
}
|
|
|
|
export function isNonEmptyString ( maybeString ) {
|
|
if ( !isString( maybeString ) ) return false
|
|
|
|
return maybeString.length > 0
|
|
}
|
|
|
|
export function isNonEmptyArray ( maybeArray ) {
|
|
if ( !Array.isArray( maybeArray ) ) return false
|
|
|
|
return maybeArray.length > 0
|
|
}
|
|
|
|
export function isPositiveNumberString ( maybeNumber ) {
|
|
if ( !isString( maybeNumber ) ) return false
|
|
|
|
return /\d+$/.test( maybeNumber )
|
|
}
|
|
|
|
|
|
export function isValidHttpUrl( maybeUrl, allowUnsecure = false ) {
|
|
if ( !isString( maybeUrl ) ) return false
|
|
|
|
let url
|
|
|
|
try {
|
|
url = new URL(maybeUrl)
|
|
} catch (_) {
|
|
return false
|
|
}
|
|
|
|
if ( allowUnsecure ) {
|
|
return url.protocol === "http:" || url.protocol === "https:"
|
|
}
|
|
|
|
return url.protocol === "https:"
|
|
}
|
|
|
|
export function isValidImageUrl ( maybeUrl ) {
|
|
if ( !isValidHttpUrl( maybeUrl ) ) return false
|
|
|
|
// Check if url has a file extension
|
|
const url = new URL(maybeUrl)
|
|
const fileExtension = url.pathname.split('.').pop()
|
|
|
|
return isNonEmptyString( fileExtension )
|
|
}
|
|
|
|
|
|
export function isObject( maybeObject ) {
|
|
return maybeObject === Object( maybeObject )
|
|
}
|