2.3.0 • Published 6 months ago

url-or-path v2.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

url-or-path

Build Status Coverage Npm Version MIT License

Convert between file URL and path.

Install

yarn add url-or-path

Usage

import {toUrl, toPath} from 'url-or-path'

console.log(toUrl(urlOrPath))
//=> URL {/* ... */}

console.log(toPath(urlOrPath))
//=> 'path/to/file'

API

toUrl(urlOrPath)(alias toURL)

Type: string | URL

Returns a URL object of given URL or path string.

toPath(urlOrPath)

Type: string | URL

Returns path string of given URL or path string.

toDirectory(urlOrPath)

Type: string | URL

Same as toUrl, but the result URL always ends with /.

isUrl(value)(alias isURL)

Check if value is a URL instance or a string starts with file://.

isUrlInstance(value)(alias isURLInstance)

Check if value is a URL instance.

isUrlString(value)(alias isURLString)

Check if value is a string starts with file://.

2.3.0

6 months ago

2.2.0

6 months ago

1.0.2

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

2.1.0

2 years ago

1.0.4

2 years ago

2.0.0

2 years ago

1.0.0

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago

0.0.0

3 years ago