UNPKG
cosmic-interchain-utils
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.1
0.1.0
Cosmic Interchain Utils
github.com/mellis1010/interchain_main_repo
mellis1010/interchain_main_repo
cosmic-interchain-utils
/
dist
/
url.js
10 lines
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
function
isHttpsUrl
(
value
) {
try
{
const
url =
new
URL
(value);
return
url.
protocol
===
'https:'
; }
catch
(error) {
return
false
; } }
//# sourceMappingURL=url.js.map