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

@types/valid-url

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/valid-url

TypeScript definitions for valid-url

  • 1.0.7
  • ts4.5
  • ts4.6
  • ts4.7
  • ts4.8
  • ts4.9
  • ts5.0
  • ts5.1
  • ts5.2
  • ts5.3
  • ts5.4
  • ts5.5
  • ts5.6
  • ts5.7
  • ts5.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Installation

npm install --save @types/valid-url

Summary

This package contains type definitions for valid-url (https://github.com/ogt/valid-url).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/valid-url.

index.d.ts

/**
 * Is the value a well-formed uri?
 * Returns the untainted URI if the test value appears to be well-formed.  Note that you may really want one of the more practical methods like is_http_uri or is_https_uri, since the URI standard (RFC 3986) allows a lot of things you probably don't want.
 * @param value - The potential URI to test.
 * @returns The untainted RFC 3986 URI on success, undefined on failure.
 */
export function isUri(value: string): string | undefined;

/**
 * Is the value a well-formed HTTP uri?
 * Specialized version of isUri() that only likes http:// urls.  As a result, it can also do a much more thorough job validating.  Also, unlike isUri() it is more concerned with only allowing real-world URIs through.  Things like relative hostnames are allowed by the standards, but probably aren't wise.  Conversely, null paths aren't allowed per RFC 2616 (should be '/' instead), but are allowed by this function.
 *
 * This function only works for fully-qualified URIs.  /bob.html won't work. See RFC 3986 for the appropriate method to turn a relative URI into an absolute one given its context.
 *
 * Note that you probably want to either call this in combo with is_https_uri().
 * i.e. if(isHttpUri(uri) || isHttpsUri(uri)) console.log('Good');
 * or use the convenience method isWebUri which is equivalent.
 * @param value - The potential URI to test.
 * @returns The untainted RFC 3986 URI on success, undefined on failure.
 */
export function isHttpUri(value: string): string | undefined;

/**
 * Is the value a well-formed HTTPS uri?
 * See is_http_uri() for details.  This version only likes the https URI scheme. Otherwise it's identical to is_http_uri().
 * @param value - The potential URI to test.
 * @returns The untainted RFC 3986 URI on success, undefined on failure.
 */
export function isHttpsUri(value: string): string | undefined;

/**
 * Is the value a well-formed HTTP or HTTPS uri?
 * This is just a convenience method that combines isHttpUri and isHttpsUri to accept most common real-world URLs.
 * @param value - The potential URI to test.
 * @returns The untainted RFC 3986 URI on success, undefined on failure.
 */
export function isWebUri(value: string): string | undefined;

Additional Details

  • Last updated: Tue, 07 Nov 2023 15:11:36 GMT
  • Dependencies: none

Credits

These definitions were written by Gabriel Cangussu.

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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