UNPKG

ipull

Version:

The only file downloader you'll ever need. For node.js and the browser, CLI and library for fast and reliable file downloads.

7 lines 249 B
import FetchStreamError from "./fetch-stream-error.js"; export default class PathNotAFileError extends FetchStreamError { constructor(path) { super(`Path is not a file: ${path}`); } } //# sourceMappingURL=path-not-a-file-error.js.map