Package detail

normalize-file-to-url-path

mattdesl100MIT1.0.0

normalizes a file to a URL pathname

url, path, name, file

readme

normalize-file-to-url-path

experimental

A simple function to normalize a file path into a URL path that can be used when testing req.url from an HTTP server.

var toUrl = require('normalize-file-to-url-path')

toUrl('./foo.js')
//=> 'foo.js'

toUrl('foo bar.js')
//=> 'foo%20bar.js'

toUrl('/')
//=> null

Experimental -- mostly used internally across some of my tools.

License

MIT, see LICENSE.md for details.