You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var template = new URITemplate("http://example.org/{file}");
var result = template.expand( {file: ['param1', 'param2', 'param3'] } );
result === "http://example.org/param1,param2,param3";
Can i use + instead comma? Like this: result === "http://example.org/param1+param2+param3";
The text was updated successfully, but these errors were encountered:
Hello. Can i change params separator?
Can i use + instead comma? Like this:
result === "http://example.org/param1+param2+param3";
The text was updated successfully, but these errors were encountered: