UNPKG

orange-orm

Version:

Object Relational Mapper

8 lines (6 loc) 220 B
const getSessionSingleton = require('./getSessionSingleton'); function setSessionCache(context, id, value) { const cache = getSessionSingleton(context, 'cache'); cache[id] = value; } module.exports = setSessionCache;