UNPKG

uri-template-router

Version:

Match a URI to a pattern in a collection of URI Templates

8 lines (7 loc) 211 B
'use strict'; const ALPHA = 'A-Za-z'; const DIGIT = '0-9'; const gen_delims = ":/?#[]@"; const sub_delims = "!$&'()*+,;="; const reserved = gen_delims + sub_delims; const unreserved = ALPHA + DIGIT + "-._~";