Aktueller Stand

This commit is contained in:
2026-01-22 19:05:45 +01:00
parent 85dee61a4d
commit e280e4eadb
1967 changed files with 397327 additions and 74093 deletions

View File

@@ -3,12 +3,13 @@
module.exports = {
name: '__fmw_internal_strategy_merged_tree_http_method__',
storage: function () {
const handlers = {}
const handlers = new Map()
return {
get: (type) => { return handlers[type] || null },
set: (type, store) => { handlers[type] = store }
get: (type) => { return handlers.get(type) || null },
set: (type, store) => { handlers.set(type, store) }
}
},
deriveConstraint: /* istanbul ignore next */ (req) => req.method,
/* c8 ignore next 1 */
deriveConstraint: (req) => req.method,
mustMatchWhenDerived: true
}