url-http
v1.3.0
Published
Get input as normalized WHATWG URL
Downloads
81,927
Readme
url-http
Get input as normalized WHATWG URL.
Install
$ npm install url-http --save
Usage
const urlHttp = require('url-http')
!!urlHttp('https://kikobeats.com') // ==> true
!!urlHttp('https://kikobeats.com') // ==> true
!!urlHttp('mailto://[email protected]') // ==> false
!!urlHttp('callto:192.168.103.77+type=ip') // ==> false
If you need to run the package in a browser environment, you can save some bytes using the lightweight version:
const urlHttp = require('url-http/lightweight')
!!urlHttp('https://kikobeats.com') // ==> true
!!urlHttp('https://kikobeats.com') // ==> true
!!urlHttp('mailto://[email protected]') // ==> false
!!urlHttp('callto:192.168.103.77+type=ip') // ==> false
License
url-http © Kiko Beats, released under the MIT License. Authored and maintained by Kiko Beats with help from contributors.
kikobeats.com · GitHub Kiko Beats · X @Kikobeats