UNPKG
@cap-js/asyncapi
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
CAP tool for AsyncAPI
cap.cloud.sap
cap-js/asyncapi
@cap-js/asyncapi
/
lib
/
compile
/
components
/
schemas
/
cache.js
15 lines
(11 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function
cacheAndReturn
(schemaCache, type, schema)
{ schemaCache[
type
] = schema;
return
schema; }
function
getCache
(schemaCache, type)
{
return
schemaCache[
type
]; }
module
.exports = { cacheAndReturn, getCache }