Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

is-url-superb

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-url-superb - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

license

5

index.js
'use strict';
var urlRegex = require('url-regex');
var re = new RegExp('^' + urlRegex().source + '$', 'i');
var urlRegex = require('url-regex')({exact: true});

@@ -10,3 +9,3 @@ module.exports = function (url) {

return re.test(url.trim());
return urlRegex.test(url.trim());
};

2

package.json
{
"name": "is-url-superb",
"version": "1.0.0",
"version": "1.0.1",
"description": "Check if a string is an URL",

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc