forked from sindresorhus/protocolify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
33 lines (25 loc) · 826 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
export interface Options {
/**
Prepend `https://` instead of `http://` to URLs.
@default true
*/
readonly https?: boolean;
}
/**
Prepend `https://` to humanized URLs like `sindresorhus.com` and `file://` to file paths.
@param urlOrFilePath - The URL to prepend `https://` or file path to prepend `file://`.
@example
```
import protocolify from 'protocolify';
protocolify('sindresorhus.com');
//=> 'https://sindresorhus.com'
protocolify('localhost', {https: false});
//=> 'http://localhost'
protocolify('https://sindresorhus.com');
//=> 'https://sindresorhus.com'
// If it exists on disk, it will be interpreted as a file and not a URL
protocolify('index.js');
//=> 'file:///Users/sindresorhus/dev/protocolify/index.js'
```
*/
export default function protocolify(urlOrFilePath: string, options?: Options): string;