UNPKG

es6-url-template

Version:

This is a simple URI template implementation following the [RFC 6570 URI Template specification](http://tools.ietf.org/html/rfc6570). The implementation supports all levels defined in the specification and is extensively tested.

5 lines (4 loc) 136 B
export default class UrlTemplate { constructor(template: string); expand(context: Record<string, string[] | string>): string; }