string-template-format-uri
v0.1.7
Published
String template literal tag that converts string into valid URI/URL components
Downloads
3
Maintainers
Readme
String Template Format: URI
String template literal tag that converts string into valid URI/URL components
Usage
import { uri, uriComp } from 'string-template-format-uri'
const str = 'abc/def ghi'
console.log(uri`https://example.com/${str}`)
console.log(uriComp`https://example.com/${str}`)
should print:
https://example.com/abc/def%20ghi
https://example.com/abc%2Fdef%20ghi