UNPKG

@cap-js/asyncapi

Version:

CAP tool for AsyncAPI

15 lines (11 loc) 234 B
function cacheAndReturn(schemaCache, type, schema) { schemaCache[type] = schema; return schema; } function getCache(schemaCache, type) { return schemaCache[type]; } module.exports = { cacheAndReturn, getCache }