normalize-file-to-url-path
v1.0.0
Published
normalizes a file to a URL pathname
Downloads
72
Maintainers
Readme
normalize-file-to-url-path
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.