0.1.7 • Published 4 years ago

string-template-format-uri v0.1.7

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

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

License

MIT © Hoàng Văn Khải