@cspell/cspell-service-bus
Advanced tools
Comparing version 7.0.1-alpha.6 to 7.0.1-alpha.7
@@ -9,3 +9,3 @@ "use strict"; | ||
function createIsRequestHandlerFn(isA, fn) { | ||
return (dispatcher) => (next) => (request) => isA(request) ? fn(request, next, dispatcher) : next(request); | ||
return (dispatcher) => (next) => (request) => (isA(request) ? fn(request, next, dispatcher) : next(request)); | ||
} | ||
@@ -12,0 +12,0 @@ exports.createIsRequestHandlerFn = createIsRequestHandlerFn; |
@@ -5,3 +5,3 @@ export function createRequestHandler(requestDef, fn, name, description) { | ||
export function createIsRequestHandlerFn(isA, fn) { | ||
return (dispatcher) => (next) => (request) => isA(request) ? fn(request, next, dispatcher) : next(request); | ||
return (dispatcher) => (next) => (request) => (isA(request) ? fn(request, next, dispatcher) : next(request)); | ||
} | ||
@@ -8,0 +8,0 @@ export function createIsRequestHandler(isA, fn, name, description) { |
@@ -6,3 +6,3 @@ { | ||
}, | ||
"version": "7.0.1-alpha.6", | ||
"version": "7.0.1-alpha.7", | ||
"description": "A Library for connecting requests to services that can fulfill them.", | ||
@@ -58,3 +58,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "42a31c7216a9af068ae4b7c3921f8edd327f756f" | ||
"gitHead": "719c2f9f55c79d35074f8493a37de6f40077325d" | ||
} |
Sorry, the diff of this file is not supported yet
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
65239