Skip to content

Commit 6db0e68

Browse files
authoredJul 4, 2022
feat(default-params): replace || cond with default params (#153)
1 parent 6aca720 commit 6db0e68

File tree

2 files changed

+8
-13
lines changed

2 files changed

+8
-13
lines changed
 

‎lib/layer.js

+4-6
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ module.exports = Layer;
1717
* @private
1818
*/
1919

20-
function Layer(path, methods, middleware, opts) {
21-
this.opts = opts || {};
20+
function Layer(path, methods, middleware, opts = {}) {
21+
this.opts = opts;
2222
this.name = this.opts.name || null;
2323
this.methods = [];
2424
this.paramNames = [];
@@ -60,14 +60,12 @@ Layer.prototype.match = function (path) {
6060
*
6161
* @param {String} path
6262
* @param {Array.<String>} captures
63-
* @param {Object=} existingParams
63+
* @param {Object=} params
6464
* @returns {Object}
6565
* @private
6666
*/
6767

68-
Layer.prototype.params = function (path, captures, existingParams) {
69-
const params = existingParams || {};
70-
68+
Layer.prototype.params = function (path, captures, params = {}) {
7169
for (let len = captures.length, i = 0; i < len; i++) {
7270
if (this.paramNames[i]) {
7371
const c = captures[i];

‎lib/router.js

+4-7
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ module.exports = Router;
4747
* @constructor
4848
*/
4949

50-
function Router(opts) {
50+
function Router(opts = {}) {
5151
if (!(this instanceof Router)) return new Router(opts);
5252

53-
this.opts = opts || {};
53+
this.opts = opts;
5454
this.methods = this.opts.methods || [
5555
'HEAD',
5656
'OPTIONS',
@@ -430,8 +430,7 @@ Router.prototype.routes = Router.prototype.middleware = function () {
430430
* @returns {Function}
431431
*/
432432

433-
Router.prototype.allowedMethods = function (options) {
434-
options = options || {};
433+
Router.prototype.allowedMethods = function (options = {}) {
435434
const implemented = this.methods;
436435

437436
return function allowedMethods(ctx, next) {
@@ -562,9 +561,7 @@ Router.prototype.redirect = function (source, destination, code) {
562561
* @private
563562
*/
564563

565-
Router.prototype.register = function (path, methods, middleware, opts) {
566-
opts = opts || {};
567-
564+
Router.prototype.register = function (path, methods, middleware, opts = {}) {
568565
const router = this;
569566
const stack = this.stack;
570567

0 commit comments

Comments
 (0)
Please sign in to comment.