Checks whether the given url started with 'http://', case insensitive
Optional
The url to test
true if the url started with 'http://', otherwise false
true
false
David Hsing
isHttp('http://example.com'); // trueisHttp('HTTP://EXAMPLE.COM'); // trueisHttp('https://example.com'); // falseisHttp('ftp://example.com'); // falseisHttp(undefined); // falseisHttp(null); // false Copy
isHttp('http://example.com'); // trueisHttp('HTTP://EXAMPLE.COM'); // trueisHttp('https://example.com'); // falseisHttp('ftp://example.com'); // falseisHttp(undefined); // falseisHttp(null); // false
Checks whether the given url started with 'http://', case insensitive