UNPKG

hurt

Version:

HTTP and SPA routing using RFC 6570 URI templates

12 lines (10 loc) 217 B
export default function conditional(test, handle) { return function (...args) { const next = args.pop(); if (test(...args)) { handle.call(this, ...args, next); } else { next(); } }; }