Comparing version 6.2.1 to 6.2.2
@@ -43,3 +43,6 @@ const assert = require('assert') | ||
assert.notEqual(route, undefined, "'route' must be defined") | ||
const args = Array.prototype.slice.apply(arguments) | ||
const args = new Array(arguments.length) | ||
for (var i = 1; i < args.length; i++) { | ||
args[i] = arguments[i] | ||
} | ||
@@ -46,0 +49,0 @@ const node = _trie.match(route) |
{ | ||
"name": "wayfarer", | ||
"version": "6.2.1", | ||
"version": "6.2.2", | ||
"description": "Composable trie based router", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14415
174