1.0.0 • Published 9 years ago

normalize-file-to-url-path v1.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

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.