Skip to content

Commit 1ebed37

Browse files
committed
fix($urlMatcherFactory): syntax
1 parent 450b1f0 commit 1ebed37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/urlMatcherFactory.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ UrlMatcher.prototype.format = function (values) {
255255
}
256256

257257
for (/**/; i < nTotal; i++) {
258-
param = params[i]
258+
param = params[i];
259259
if (values[param] == null) continue;
260260
result += (search ? '&' : '?') + param + '=' + encodeURIComponent(values[param]);
261261
search = true;
@@ -279,7 +279,7 @@ Type.prototype.encode = function(val, key) {
279279

280280
Type.prototype.decode = function(val, key) {
281281
return val;
282-
}
282+
};
283283

284284
Type.prototype.equals = function(a, b) {
285285
return a == b;

0 commit comments

Comments
 (0)