filenamify-url
Convert a URL to a valid filename
Last updated 11 years ago by sindresorhus .
MIT · Repository · Bugs · Original npm
$ cnpm install filenamify-url 
SYNC missed versions from official npm registry.

filenamify-url Build Status

Convert a URL to a valid filename

Install

$ npm install filenamify-url

Usage

const filenamifyUrl = require('filenamify-url');

filenamifyUrl('http://sindresorhus.com/foo?bar=baz');
//=> 'sindresorhus.com!foo!bar=baz'

filenamifyUrl('http://sindresorhus.com/foo', {replacement: '????'});
//=> 'sindresorhus.com????foo'

API

filenamifyUrl(url, options?)

Accepts a URL and returns a valid filename.

url

Type: string

A URL to convert to a valid filename.

options

Type: object

See the filenamify options.

Current Tags

  • 1.0.0                                ...           latest (11 years ago)

1 Versions

  • 1.0.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (1)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org