Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sebastiandg7/prepend-http

Prepend `https://` to humanized URLs like `sindresorhus.com` and `localhost` - Forked from https://github.com/sindresorhus/prepend-http
https://github.com/sebastiandg7/prepend-http

Last synced: 14 days ago
JSON representation

Prepend `https://` to humanized URLs like `sindresorhus.com` and `localhost` - Forked from https://github.com/sindresorhus/prepend-http

Awesome Lists containing this project

README

        

# Prepend HTTP

(Forked from [sindresorhus/prepend-http](https://github.com/sindresorhus/prepend-http))

## Install

`npm install @sebastiandg7/prepend-http`

or

`yarn add @sebastiandg7/prepend-http`

or

`pnpm install @sebastiandg7/prepend-http`

## Usage

```typescript
import { prependHttp } from '@sebastiandg7/prepend-http';

prependHttp('sindresorhus.com');
//=> 'https://sindresorhus.com'

prependHttp('localhost', { https: false });
//=> 'http://localhost'

prependHttp('https://sindresorhus.com');
//=> 'https://sindresorhus.com'
```