is-url-protocol-without-slashes
v2.0.0
Published
Checks for the presence of URL protocol without a slashes (colon-slash-slash)
Downloads
15
Maintainers
Readme
is-url-protocol-without-slashes
Node.js module. Checks for the presence of URL protocol without a slashes (colon-slash-slash)
Version 2 requires Node.js >= 6.13.
Install
# NPM
$ npm install is-url-protocol-without-slashes
# Yarn
$ yarn add is-url-protocol-without-slashes
Usage
const isUrlProtocolWithoutSlashes = require('is-url-protocol-without-slashes');
isUrlProtocolWithoutSlashes('mailto:[email protected]');
//=> true
isUrlProtocolWithoutSlashes('tel:9008007060');
//=> true
isUrlProtocolWithoutSlashes('http://test.com');
//=> false
isUrlProtocolWithoutSlashes('tg://addstickers?set=example');
//=> false
License
MIT © 2016-2019 Nikita Bystrov (Arttse)